Injector Pro
Inject JS/CSS from CDN
什麼是Injector Pro?
Injector Pro是由eGust開發的Chrome擴展程式,該擴展的主要功能是“Inject JS/CSS from CDN”。
擴展截圖
下載Injector Pro擴展crx文件
下載Injector Pro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Sometimes when analyzing web pages or debugging our own pages built with bundler (like webpack), it would be convenient if the page is ready for jQuery or other libraries. Sometimes we want to try some CSS styles in our small static pages without a CSS library/framework. Maybe you need to dynamically load a CSS library. This extension has only one simple purpose: to inject JS/CSS libraries from CDN. There are some libraries ready: jQuery, lodash, axios and Bootstrap. It's very easy to inject a preset of libs, and JS files could be injected one by one(load next when previous ready), also prevent to inject duplicated URLs.
擴展基本資訊
名稱 | |
ID | bblelpkjpeaahgfmpjphgebjnfjofkci |
官方網址 | https://chrome.google.com/webstore/detail/injector-pro/bblelpkjpeaahgfmpjphgebjnfjofkci |
簡介 | Inject JS/CSS from CDN |
檔案大小 | 150 KB |
安裝次數 | 246 |
目前版本 | 1.0.0 |
更新時間 | 2018-01-28 |
上架時間 | 2018-01-28 |
評分 | 5.00/5 共 1 次評分 |
開發者 | eGust |
付費類型 | free |
支援的語言 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "short_name": "Injection", "version": "1.0.0", "default_locale": "en", "description": "__MSG_extension_description__", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "browser_action": { "default_title": "__MSG_extension_name__", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contextScript.js" ], "run_at": "document_start" } ], "permissions": [ "*:\/\/*\/*", "tabs" ], "author": "eGust", "homepage_url": "https:\/\/github.com\/eGust\/injector-pro" } |