AddJS

This extension allows you to add your own custom website specific JavaScript.

什麼是AddJS?

AddJS是由http://mkhsoft.eu開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to add your own custom website specific JavaScript.”。

擴展截圖

screenshot
screenshot

下載AddJS擴展crx文件

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

擴展使用說明

                        AddJS is a light-weight extension for injecting your own JavaScript to a website. You can define domain specific JavaScript snippets that will be injected to all sites in that web domain. 

Furthermore, your snippets are synchronised automatically to all Chrome browsers you are using on different machines.                    

擴展基本資訊

名稱 AddJS AddJS
ID ikdcaklgiaookdchoncnfcidafmmlndm
官方網址 https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm
簡介 This extension allows you to add your own custom website specific JavaScript.
檔案大小 57.22 KB
安裝次數 165
目前版本 1.0
更新時間 2017-01-19
上架時間 2017-01-19
評分 5.00/5 共 1 次評分
開發者 http://mkhsoft.eu
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddJS",
    "description": "This extension allows you to add your own custom website specific JavaScript.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon128.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}