Script Panel
Allows to create quick buttons with your JS !
Qu'est-ce que Script Panel ?
Script Panel est une extension Chrome développée par http://sintosp.blogspot.com, et sa fonction principale est "Allows to create quick buttons with your JS !".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Script Panel
Téléchargez les fichiers d'extension Script Panel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | nkadepnecnanfaoinkachcnjbfagedlh |
URL Officiel | https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh |
Description | Allows to create quick buttons with your JS ! |
Taille du Fichier | 173 KB |
Nombre d'Installations | 75 |
Version Actuelle | 0.9.1 |
Dernière Mise à Jour | 2019-03-08 |
Date de Publication | 2019-03-08 |
Développeur | http://sintosp.blogspot.com |
Type de Paiement | free |
Langues Prises en Charge | 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 } |