Script Panel
Allows to create quick buttons with your JS !
Wat is Script Panel?
Script Panel is een Chrome-extensie ontwikkeld door http://sintosp.blogspot.com, en de belangrijkste functie is "Allows to create quick buttons with your JS !".
Extensie Screenshots
Download het CRX-bestand van de extensie Script Panel
Download Script Panel-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | nkadepnecnanfaoinkachcnjbfagedlh |
Officiële URL | https://chrome.google.com/webstore/detail/script-panel/nkadepnecnanfaoinkachcnjbfagedlh |
Beschrijving | Allows to create quick buttons with your JS ! |
Bestandsgrootte | 173 KB |
Aantal Installaties | 75 |
Huidige Versie | 0.9.1 |
Laatst Bijgewerkt | 2019-03-08 |
Publicatiedatum | 2019-03-08 |
Ontwikkelaar | http://sintosp.blogspot.com |
Betalingswijze | free |
Ondersteunde Talen | 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 } |