Script Panel

Allows to create quick buttons with your JS !

O que é Script Panel?

Script Panel é uma extensão do Chrome desenvolvida por http://sintosp.blogspot.com, e sua principal característica é "Allows to create quick buttons with your JS !".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Script Panel

Baixe arquivos de extensão Script Panel no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Script Panel Script Panel
ID nkadepnecnanfaoinkachcnjbfagedlh
URL Oficial https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh
Descrição Allows to create quick buttons with your JS !
Tamanho do Arquivo 173 KB
Contagem de Instalações 75
Versão Atual 0.9.1
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Desenvolvedor http://sintosp.blogspot.com
Tipo de Pagamento free
Idiomas Suportados 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
}