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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
        }
    ]
}