osprey

osprey is a privacy respecting fork of the well known stylish

ما هو osprey؟

osprey هو إضافة Chrome تم تطويرها بواسطة JackCDK، والميزة الرئيسية لها هي "osprey is a privacy respecting fork of the well known stylish".

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

screenshot
screenshot

تحميل ملف CRX للإضافة osprey

قم بتنزيل ملفات الامتداد osprey بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Ospey is an open-source GPL compliant fork of Stylish, based on an older version before the privacy changes. It can manage custom CSS, whether from userstyles.org, or your own configurations. It is easy to install and use, and with the rare-if-any updates, you can be sure that none of your custom CSS scripts will ever be impacted.                    

معلومات أساسية عن التمديد

الاسم osprey osprey
ID ekjapccimkannnfgcnnoajhfdglobgak
عنوان URL الرسمي https://chromewebstore.google.com/detail/osprey/ekjapccimkannnfgcnnoajhfdglobgak
الوصف osprey is a privacy respecting fork of the well known stylish
حجم الملف 401 KB
عدد التثبيتات 496
النسخة الحالية 1.0.4
آخر تحديث 2022-07-09
تاريخ النشر 2017-03-21
تقييم 4.58/5 مجموع تقييمات 24
المطور JackCDK
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/JackCDK/osprey
عنوان صفحة المساعدة https://github.com/JackCDK/osprey/issues/new
اللغات المدعومة de,en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "osprey",
    "version": "1.0.4",
    "description": "osprey is a privacy respecting fork of the well known stylish",
    "homepage_url": "https:\/\/github.com\/jackcdk\/osprey",
    "manifest_version": 2,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "contextMenus",
        "http:\/\/userstyles.org\/",
        "https:\/\/userstyles.org\/"
    ],
    "background": {
        "page": "background.html"
    },
    "commands": {
        "openManage": {
            "description": "__MSG_openManage__"
        },
        "styleDisableAll": {
            "description": "__MSG_disableAllStyles__"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "apply.js"
            ]
        },
        {
            "matches": [
                "http:\/\/userstyles.org\/*",
                "https:\/\/userstyles.org\/*"
            ],
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "install.js"
            ]
        }
    ],
    "options_page": "manage.html",
    "browser_action": {
        "default_icon": {
            "19": "19w.png",
            "38": "38w.png"
        },
        "default_title": "Osprey",
        "default_popup": "popup.html"
    },
    "default_locale": "en"
}