AddJS

AddJS

Wat is AddJS?

AddJS is een Chrome-extensie ontwikkeld door http://cssha.com, en de belangrijkste functie is "AddJS".

Download het CRX-bestand van de extensie AddJS

Download AddJS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam AddJS AddJS
ID aoahkpekljaimojhfefaiibfdcnmlhdi
Officiële URL https://chrome.google.com/webstore/detail/addjs/aoahkpekljaimojhfefaiibfdcnmlhdi
Beschrijving AddJS
Bestandsgrootte 76.41 KB
Aantal Installaties 120
Huidige Versie 0.0.3
Laatst Bijgewerkt 2015-02-24
Publicatiedatum 2015-02-24
Beoordeling 2.00/5 Totaal 1 Beoordelingen
Ontwikkelaar http://cssha.com
Betalingswijze free
Extensiewebsite http://cssha.com/addjs
Ondersteunde Talen 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"
}