Cloud Inject
Inject JS/CSS from any url, into any page
Cloud Injectとは何ですか?
Cloud InjectはAloong Dengによって開発されたChromeの拡張機能で、その主な機能は「Inject JS/CSS from any url, into any page」です。
拡張機能のスクリーンショット
Cloud Inject拡張機能のCRXファイルをダウンロード
Cloud Inject拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.
拡張機能の基本情報
名前 | |
ID | hoenhdmdbiehplejoheeklmflmcnidjp |
公式URL | https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp |
説明 | Inject JS/CSS from any url, into any page |
ファイルサイズ | 51.03 KB |
インストール数 | 54 |
現在のバージョン | 1.5 |
最終更新日 | 2017-06-06 |
公開日 | 2017-06-06 |
評価 | 3.67/5 合計 3 レビュー |
開発者 | Aloong Deng |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloud Inject", "version": "1.5", "manifest_version": 2, "description": "Inject JS\/CSS from any url, into any page", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "myscript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "jquery.js", "inject_script.js", "inject_css.css" ], "page_action": { "default_icon": "icon.png", "default_title": "Cloud Inject", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/cloud-inject\/hoenhdmdbiehplejoheeklmflmcnidjp" } |