Gorilla Script- and Style-Loader
Enables you to load Javascript and CSS into websites.
Vad är Gorilla Script- and Style-Loader?
Gorilla Script- and Style-Loader är en Chrome-tillägg utvecklad av https://gorilla.moe, och dess huvudfunktion är "Enables you to load Javascript and CSS into websites.".
Tilläggsskärmbilder
Ladda ner Gorilla Script- and Style-Loader-förlängningens CRX-fil
Ladda ner Gorilla Script- and Style-Loader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Enables you to load Javascript and CSS into websites. I mostly use this for debugging purposes and quick and hacky dev sessions. Changelog ========= 4.0.1 - Use regex domains instead of fixed hostnames - Fix CSS Injection (Thanks to Patrick Ewald) 3.0.1 ----- - UI: Add Drag Icons - Fix Hostname not correctly saved - UI: Add save button - UI: Add transitions when disabling items - UI: Prevent drag in input fields
Grundläggande Information om Tillägg
Namn | Gorilla Script- and Style-Loader |
ID | pmhjddnookgenpppkebkfdpboeamglla |
Officiell webbadress | https://chromewebstore.google.com/detail/gorilla-script-and-style/pmhjddnookgenpppkebkfdpboeamglla |
Beskrivning | Enables you to load Javascript and CSS into websites. |
Filstorlek | 19.97 KB |
Antal Installationer | 64 |
Aktuell Version | 4.1.0 |
Senast Uppdaterad | 2019-03-17 |
Publiceringsdatum | 2019-03-12 |
Utvecklare | https://gorilla.moe |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gorilla Script- and Style-Loader", "version": "4.1.0", "description": "Enables you to load Javascript and CSS into websites.", "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png" }, "options_page": "options.html", "permissions": [ "tabs", "activeTab", "storage" ], "browser_action": { "default_icon": "icons\/icon-38.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "boot.js" ], "run_at": "document_start" } ] } |