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 |
官方網址 | 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" } |