CodinGame Sync - Ext

CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.

什麼是CodinGame Sync - Ext?

CodinGame Sync - Ext是由CodinGame開發的Chrome擴展程式,該擴展的主要功能是“CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.”。

擴展截圖

screenshot
screenshot
screenshot

下載CodinGame Sync - Ext擴展crx文件

下載CodinGame Sync - Ext擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Keep Coding!

https://www.codingame.com/forum/t/codingame-sync-beta/                    

擴展基本資訊

名稱 CodinGame Sync - Ext CodinGame Sync - Ext
ID ldjnbdgcceengbjkalemckffhaajkehd
官方網址 https://chromewebstore.google.com/detail/codingame-sync-ext/ldjnbdgcceengbjkalemckffhaajkehd
簡介 CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.
檔案大小 44.93 KB
安裝次數 10,238
目前版本 1.1.1 Ext
更新時間 2022-10-06
上架時間 2015-12-16
評分 4.52/5 共 29 次評分
開發者 CodinGame
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.codingame.com
說明頁面URL https://www.codingame.com/forum/t/codingame-sync-beta
隱私政策頁面URL https://www.codingame.com/legal/privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodinGame Sync - Ext",
    "version": "1.1.1",
    "version_name": "1.1.1 Ext",
    "minimum_chrome_version": "35",
    "description": "CodinGame Sync allows you to synchronize an external file with the CodinGame editor, so you can use your own code editor.",
    "icons": {
        "128": "images\/icon128.png",
        "38": "images\/icon_codingame_sync_01.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "lib\/jquery-1.8.2.min.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*.codingame.com\/*",
                "https:\/\/*.codingame.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' ; object-src 'self'",
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "CG-Sync"
    }
}