Gorilla Script- and Style-Loader

Enables you to load Javascript and CSS into websites.

ما هو Gorilla Script- and Style-Loader؟

Gorilla Script- and Style-Loader هو إضافة Chrome تم تطويرها بواسطة https://gorilla.moe، والميزة الرئيسية لها هي "Enables you to load Javascript and CSS into websites.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Gorilla Script- and Style-Loader

قم بتنزيل ملفات الامتداد Gorilla Script- and Style-Loader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}