Gorilla Script- and Style-Loader
Enables you to load Javascript and CSS into websites.
Qu'est-ce que Gorilla Script- and Style-Loader ?
Gorilla Script- and Style-Loader est une extension Chrome développée par https://gorilla.moe, et sa fonction principale est "Enables you to load Javascript and CSS into websites.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gorilla Script- and Style-Loader
Téléchargez les fichiers d'extension Gorilla Script- and Style-Loader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Gorilla Script- and Style-Loader |
ID | pmhjddnookgenpppkebkfdpboeamglla |
URL Officiel | https://chromewebstore.google.com/detail/gorilla-script-and-style/pmhjddnookgenpppkebkfdpboeamglla |
Description | Enables you to load Javascript and CSS into websites. |
Taille du Fichier | 19.97 KB |
Nombre d'Installations | 64 |
Version Actuelle | 4.1.0 |
Dernière Mise à Jour | 2019-03-17 |
Date de Publication | 2019-03-12 |
Développeur | https://gorilla.moe |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |