AddJS

AddJS

What is AddJS?

AddJS is a Chrome extension developed by http://cssha.com, and its main feature is "AddJS".

Download AddJS Extension CRX File

Download AddJS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        在浏览网站的时候,常常会遇到恼人的广告,或者觉得某个网站图片太多,真想自己写写js来修改一下页面的内容。于是,就有了这个插件。

功能:在指定的url的网页中添加自定义的javascript脚本。                    

Extension Basic Information

Name AddJS AddJS
ID aoahkpekljaimojhfefaiibfdcnmlhdi
Official URL https://chrome.google.com/webstore/detail/addjs/aoahkpekljaimojhfefaiibfdcnmlhdi
Description AddJS
File Size 76.41 KB
Installation Count 120
Current Version 0.0.3
Last Updated 2015-02-24
Publish Date 2015-02-24
Rating 2.00/5 Total 1 Ratings
Developer http://cssha.com
Payment Type free
Extension Website http://cssha.com/addjs
Supported Languages zh-CN
manifest.json
{
    "name": "AddJS",
    "version": "0.0.3",
    "description": "AddJS",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "AddJS",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "",
        "unlimitedStorage",
        "storage"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx"
}