Gorilla Script- and Style-Loader

Enables you to load Javascript and CSS into websites.

Gorilla Script- and Style-Loaderとは何ですか?

Gorilla Script- and Style-Loaderはhttps://gorilla.moeによって開発されたChromeの拡張機能で、その主な機能は「Enables you to load Javascript and CSS into websites.」です。

拡張機能のスクリーンショット

screenshot

Gorilla Script- and Style-Loader拡張機能のCRXファイルをダウンロード

Gorilla Script- and Style-Loader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Gorilla Script- and Style-Loader Gorilla Script- and Style-Loader
ID pmhjddnookgenpppkebkfdpboeamglla
公式URL https://chromewebstore.google.com/detail/gorilla-script-and-style/pmhjddnookgenpppkebkfdpboeamglla
説明 Enables you to load Javascript and CSS into websites.
ファイルサイズ 19.97 KB
インストール数 64
現在のバージョン 4.1.0
最終更新日 2019-03-17
公開日 2019-03-12
開発者 https://gorilla.moe
Eメール [email protected]
支払い方法 free
対応言語 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"
        }
    ]
}