Javascript Injector
Inject javascript to the webpage you are visiting
Hvad er Javascript Injector?
Javascript Injector er en Chrome-udvidelse udviklet af Daniel Han, og dens hovedfunktion er "Inject javascript to the webpage you are visiting".
Udvidelsesskærmbilleder
Download Javascript Injector-udvidelses-CRX-fil
Download Javascript Injector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices. For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.
Grundlæggende oplysninger om udvidelsen
Navn | Javascript Injector |
ID | ejnccfcackblkelbafbolcpjfpcmbplg |
Officiel URL | https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg |
Beskrivelse | Inject javascript to the webpage you are visiting |
Filstørrelse | 59.53 KB |
Antal Installationer | 2,000 |
Nuværende Version | 1.2 |
Senest Opdateret | 2017-06-16 |
Udgivelsesdato | 2017-06-16 |
Bedømmelse | 4.13/5 Samlet 8 Bedømmelser |
Udvikler | Daniel Han |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/hex0cter/js-injector |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Javascript Injector", "author": "Daniel Han", "short_name": "JS injector", "description": "Inject javascript to the webpage you are visiting", "version": "1.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "default_title": "Javascript Injector", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ] } |