Javascript Injector

Inject javascript to the webpage you are visiting

什麼是Javascript Injector?

Javascript Injector是由Daniel Han開發的Chrome擴展程式,該擴展的主要功能是“Inject javascript to the webpage you are visiting”。

擴展截圖

screenshot
screenshot
screenshot

下載Javascript Injector擴展crx文件

下載Javascript Injector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

擴展基本資訊

名稱 Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
官方網址 https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
簡介 Inject javascript to the webpage you are visiting
檔案大小 59.53 KB
安裝次數 2,000
目前版本 1.2
更新時間 2017-06-16
上架時間 2017-06-16
評分 4.13/5 共 8 次評分
開發者 Daniel Han
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/hex0cter/js-injector
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}