Scriptable
Configurable page scripts
What is Scriptable?
Scriptable is a Chrome extension developed by RaoQu, and its main feature is "Configurable page scripts".
Extension Screenshots
Download Scriptable Extension CRX File
Download Scriptable extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | hbheihpcmapeadnhhpglmpjknfjdjncc |
Official URL | https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc |
Description | Configurable page scripts |
File Size | 148 KB |
Installation Count | 22 |
Current Version | 2.1.5 |
Last Updated | 2017-05-12 |
Publish Date | 2017-05-12 |
Rating | 5.00/5 Total 2 Ratings |
Developer | RaoQu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/raoqu/scriptable |
Help Page URL | https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md |
Supported Languages | 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" } |