R42 Module Loader
Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…
R42 Module Loaderとは何ですか?
R42 Module Loaderはicodeforloveによって開発されたChromeの拡張機能で、その主な機能は「Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…」です。
拡張機能のスクリーンショット
R42 Module Loader拡張機能のCRXファイルをダウンロード
R42 Module Loader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to console usage.
拡張機能の基本情報
名前 | R42 Module Loader |
ID | ojjecmicelipcjlfeehmpmcmljaolbie |
公式URL | https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie |
説明 | Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to… |
ファイルサイズ | 548 KB |
インストール数 | 16 |
現在のバージョン | 1.4.3 |
最終更新日 | 2016-12-19 |
公開日 | 2016-12-19 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | icodeforlove |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "R42 Module Loader", "manifest_version": 2, "version": "1.4.3", "minimum_chrome_version": "49.0.2623.110", "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "communication.js", "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "app\/*" ], "icons": { "32": "icon.png", "128": "icon128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |