Inject Code
Inject different javascript or css code to every website, when you want
Inject Codeとは何ですか?
Inject Codeはmaxによって開発されたChromeの拡張機能で、その主な機能は「Inject different javascript or css code to every website, when you want」です。
拡張機能のスクリーンショット
Inject Code拡張機能のCRXファイルをダウンロード
Inject Code拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded. Features: - inject custom js/css to website - inject CDN links to website - 38 most popular themes - auto-inject code to site option ( after loaded page scripts will inject automatically) - highlight syntax errors and warnings - hot keys : * Ctrl+Enter - run code, * Ctrl+F - find in editor For inject code to site: - open browser devtools panel, - go to "Inject code" tab - write code ( on typing code autosaving ) - on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )
拡張機能の基本情報
名前 | Inject Code |
ID | gpaakhhkcmlenabckmapmlfnajboobbi |
公式URL | https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi |
説明 | Inject different javascript or css code to every website, when you want |
ファイルサイズ | 2.96 MB |
インストール数 | 792 |
現在のバージョン | 0.91.21 |
最終更新日 | 2020-08-04 |
公開日 | 2020-07-06 |
評価 | 4.00/5 合計 6 レビュー |
開発者 | max |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Code", "description": "Inject different javascript or css code to every website, when you want", "version": "0.91.21", "minimum_chrome_version": "16.0.884", "permissions": [ "activeTab", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "devtools_page": "devtools.html", "manifest_version": 2 } |