Scriptable
Configurable page scripts
Scriptableとは何ですか?
ScriptableはRaoQuによって開発されたChromeの拡張機能で、その主な機能は「Configurable page scripts」です。
拡張機能のスクリーンショット
Scriptable拡張機能のCRXファイルをダウンロード
Scriptable拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | hbheihpcmapeadnhhpglmpjknfjdjncc |
| 公式URL | https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc |
| 説明 | Configurable page scripts |
| ファイルサイズ | 148 KB |
| インストール数 | 22 |
| 現在のバージョン | 2.1.5 |
| 最終更新日 | 2017-05-12 |
| 公開日 | 2017-05-12 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | RaoQu |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/raoqu/scriptable |
| ヘルプページのURL | https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md |
| 対応言語 | 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"
} | |