Script Panel

Allows to create quick buttons with your JS !

Was ist Script Panel?

Script Panel ist eine Chrome-Erweiterung, die von http://sintosp.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Allows to create quick buttons with your JS !".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Script Panel-Erweiterungs-CRX-Datei herunterladen

Laden Sie Script Panel-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Script Panel Script Panel
ID nkadepnecnanfaoinkachcnjbfagedlh
Offizielle URL https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh
Beschreibung Allows to create quick buttons with your JS !
Dateigröße 173 KB
Installationsanzahl 75
Aktuelle Version 0.9.1
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Entwickler http://sintosp.blogspot.com
Zahlungsart free
Unterstützte Sprachen 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
}