Scriptable
Configurable page scripts
Was ist Scriptable?
Scriptable ist eine Chrome-Erweiterung, die von RaoQu entwickelt wurde, und ihr Hauptmerkmal ist "Configurable page scripts".
Erweiterungsscreenshots
Scriptable-Erweiterungs-CRX-Datei herunterladen
Laden Sie Scriptable-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
v1.3 Cross origin ajax request enabled. v1.5 Execute script on page load or clicking extension icon v2.0 Add crawl API, @see https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md
Grundlegende Informationen zur Erweiterung
Name | |
ID | hbheihpcmapeadnhhpglmpjknfjdjncc |
Offizielle URL | https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc |
Beschreibung | Configurable page scripts |
Dateigröße | 148 KB |
Installationsanzahl | 22 |
Aktuelle Version | 2.1.5 |
Letztes Update | 2017-05-12 |
Veröffentlichungsdatum | 2017-05-12 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | RaoQu |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/raoqu/scriptable |
Hilfeseite URL | https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scriptable", "description": "Configurable page scripts", "version": "2.1.5", "background": { "scripts": [ "common_base.js", "common_callback.js", "background_lib_extension.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "jquery-3.1.1.min.js", "common_base.js", "common_callback.js", "common_extension.js", "content_lib_url.js", "content_lib_html.js", "content_lib_net.js", "content_lib_download.js", "content_util_crawler.js", "content_script.js" ], "all_frames": true } ], "options_page": "options.html", "browser_action": { "default_name": "Scriptable", "default_icon": "icon16.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "activeTab", "downloads", "storage", "unlimitedStorage", "http:\/\/*\/*", "file:\/\/*\/*" ], "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com" } |