AddJS
This extension allows you to add your own custom website specific JavaScript.
Was ist AddJS?
AddJS ist eine Chrome-Erweiterung, die von http://mkhsoft.eu entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to add your own custom website specific JavaScript.".
Erweiterungsscreenshots
AddJS-Erweiterungs-CRX-Datei herunterladen
Laden Sie AddJS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ikdcaklgiaookdchoncnfcidafmmlndm |
Offizielle URL | https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm |
Beschreibung | This extension allows you to add your own custom website specific JavaScript. |
Dateigröße | 57.22 KB |
Installationsanzahl | 165 |
Aktuelle Version | 1.0 |
Letztes Update | 2017-01-19 |
Veröffentlichungsdatum | 2017-01-19 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | http://mkhsoft.eu |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/" ] } |