Inject JS

This extension will inject javascript from a URL into the current webpage

什麼是Inject JS?

Inject JS是由dailenspencer12開發的Chrome擴展程式,該擴展的主要功能是“This extension will inject javascript from a URL into the current webpage”。

下載Inject JS擴展crx文件

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

擴展使用說明

                                            

擴展基本資訊

名稱 Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
官方網址 https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
簡介 This extension will inject javascript from a URL into the current webpage
檔案大小 40.14 KB
安裝次數 80
目前版本 1.1
更新時間 2016-09-29
上架時間 2016-09-29
開發者 dailenspencer12
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}