Gorilla Script- and Style-Loader

Enables you to load Javascript and CSS into websites.

What is Gorilla Script- and Style-Loader?

Gorilla Script- and Style-Loader is a Chrome extension developed by https://gorilla.moe, and its main feature is "Enables you to load Javascript and CSS into websites.".

Extension Screenshots

screenshot

Download Gorilla Script- and Style-Loader Extension CRX File

Download Gorilla Script- and Style-Loader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Gorilla Script- and Style-Loader Gorilla Script- and Style-Loader
ID pmhjddnookgenpppkebkfdpboeamglla
Official URL https://chromewebstore.google.com/detail/gorilla-script-and-style/pmhjddnookgenpppkebkfdpboeamglla
Description Enables you to load Javascript and CSS into websites.
File Size 19.97 KB
Installation Count 64
Current Version 4.1.0
Last Updated 2019-03-17
Publish Date 2019-03-12
Developer https://gorilla.moe
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}