Script Panel

Allows to create quick buttons with your JS !

什麼是Script Panel?

Script Panel是由http://sintosp.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Allows to create quick buttons with your JS !”。

擴展截圖

screenshot
screenshot
screenshot

下載Script Panel擴展crx文件

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

擴展使用說明

                        Easy to use extension to collect JavaScript scripts in a single place, group them, import/export script pakages in few mouse clicks.

* Go to options page to create/import/export scripts;
* Open browser on any machine (under your Google account) and use the same synchronized scripts.

GIT: https://github.com/wideserg/CE/tree/master/ScriptPanel
Packages repository: https://github.com/wideserg/CE/tree/master/ScriptPanel/packages                    

擴展基本資訊

名稱 Script Panel Script Panel
ID nkadepnecnanfaoinkachcnjbfagedlh
官方網址 https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh
簡介 Allows to create quick buttons with your JS !
檔案大小 173 KB
安裝次數 75
目前版本 0.9.1
更新時間 2019-03-08
上架時間 2019-03-08
開發者 http://sintosp.blogspot.com
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Script Panel",
    "short_name": "ScriptPanel",
    "author": "Sergey Shiroky",
    "homepage_url": "http:\/\/sintosp.blogspot.com\/",
    "version": "0.9.1",
    "description": "Allows to create quick buttons with your JS !",
    "background": {
        "scripts": [
            "scripts\/bg.js"
        ]
    },
    "icons": {
        "16": "images\/logo-16.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "images\/logo-16.png",
        "default_popup": "pages\/infobar.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/cs.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}