Gorilla Script- and Style-Loader
Enables you to load Javascript and CSS into websites.
Wat is Gorilla Script- and Style-Loader?
Gorilla Script- and Style-Loader is een Chrome-extensie ontwikkeld door https://gorilla.moe, en de belangrijkste functie is "Enables you to load Javascript and CSS into websites.".
Extensie Screenshots
Download het CRX-bestand van de extensie Gorilla Script- and Style-Loader
Download Gorilla Script- and Style-Loader-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
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 Basisinformatie over de Extensie
| Naam | |
| ID | pmhjddnookgenpppkebkfdpboeamglla |
| Officiële URL | https://chromewebstore.google.com/detail/gorilla-script-and-style/pmhjddnookgenpppkebkfdpboeamglla |
| Beschrijving | Enables you to load Javascript and CSS into websites. |
| Bestandsgrootte | 19.97 KB |
| Aantal Installaties | 64 |
| Huidige Versie | 4.1.0 |
| Laatst Bijgewerkt | 2019-03-17 |
| Publicatiedatum | 2019-03-12 |
| Ontwikkelaar | https://gorilla.moe |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
]
} | |