JavaScript Injector
Inject javascript in a given website.
什麼是JavaScript Injector?
JavaScript Injector是由luisnaia開發的Chrome擴展程式,該擴展的主要功能是“Inject javascript in a given website.”。
擴展截圖
下載JavaScript Injector擴展crx文件
下載JavaScript Injector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This chrome extension has the purpose of injecting Java Script into a target URL every time that page loads.
You can inject your favourite script to extend the page functionality.
Features
- Add urls with or without regular expressions
- Keep a list of your urls and edit your js code inline
- You can turn on/off the js code when you wish
- Search trough your URLs 擴展基本資訊
| 名稱 | |
| ID | knmnopfmccchnnfdoiddbihbcboeedll |
| 官方網址 | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
| 簡介 | Inject javascript in a given website. |
| 檔案大小 | 397 KB |
| 安裝次數 | 5,062 |
| 目前版本 | 1.0.4 |
| 更新時間 | 2014-08-21 |
| 上架時間 | 2014-08-21 |
| 評分 | 2.91/5 共 33 次評分 |
| 開發者 | luisnaia |
| 付費類型 | free |
| 擴展官網 | https://github.com/darkbls/jsinjector |
| 說明頁面URL | https://github.com/darkbls/jsinjector |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JavaScript Injector",
"short_name": "Js Injector",
"description": "Inject javascript in a given website. ",
"version": "1.0.4",
"browser_action": {
"default_icon": "icon72.png",
"default_title": "Activate Js Inject rules - Click to add a new rule"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"activeTab",
"storage",
"webNavigation"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"options_page": "options.html",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
}
} | |