Javascript injection
Inject external js files into a page in order to extend or modify functionality
什麼是Javascript injection?
Javascript injection是由[email protected]開發的Chrome擴展程式,該擴展的主要功能是“Inject external js files into a page in order to extend or modify functionality”。
下載Javascript injection擴展crx文件
下載Javascript injection擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
| 名稱 | |
| ID | anblbolcglfjebndjmgnelligobpebpf |
| 官方網址 | https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf |
| 簡介 | Inject external js files into a page in order to extend or modify functionality |
| 檔案大小 | 25.78 KB |
| 安裝次數 | 77 |
| 目前版本 | 1.0 |
| 更新時間 | 2015-08-08 |
| 上架時間 | 2015-08-08 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Javascript injection",
"version": "1.0",
"description": "Inject external js files into a page in order to extend or modify functionality",
"browser_action": {
"default_title": "Javascript injection",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"js": [
"contentscript.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"*:\/\/*\/*",
"tabs"
],
"content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
} | |