AddJS

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

Wat is AddJS?

AddJS is een Chrome-extensie ontwikkeld door http://mkhsoft.eu, en de belangrijkste functie is "This extension allows you to add your own custom website specific JavaScript.".

Extensie Screenshots

screenshot
screenshot

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

                        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.                    

Basisinformatie over de Extensie

Naam AddJS AddJS
ID ikdcaklgiaookdchoncnfcidafmmlndm
Officiële URL https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm
Beschrijving This extension allows you to add your own custom website specific JavaScript.
Bestandsgrootte 57.22 KB
Aantal Installaties 165
Huidige Versie 1.0
Laatst Bijgewerkt 2017-01-19
Publicatiedatum 2017-01-19
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar http://mkhsoft.eu
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/"
    ]
}