run-script
run script on page load
run-scriptとは何ですか?
run-scriptはzhangsanshi5566によって開発されたChromeの拡張機能で、その主な機能は「run script on page load」です。
拡張機能のスクリーンショット
run-script拡張機能のCRXファイルをダウンロード
run-script拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
We need run script for test or other things. If we don't want to open console tab every times, you can choose this tool.
拡張機能の基本情報
名前 | |
ID | gddnebgjhlhediiojefadmljmnjfomak |
公式URL | https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak |
説明 | run script on page load |
ファイルサイズ | 728 KB |
インストール数 | 17 |
現在のバージョン | 0.0.2 |
最終更新日 | 2017-02-26 |
公開日 | 2017-02-26 |
開発者 | zhangsanshi5566 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "run-script", "version": "0.0.2", "manifest_version": 2, "description": "run script on page load", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "debugger", "notifications", "pageCapture", "topSites", "storage", "unlimitedStorage" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "run script", "default_popup": "popup.html" }, "web_accessible_resources": [ "images\/icon-48.png" ] } |