osprey

osprey is a privacy respecting fork of the well known stylish

Hvad er osprey?

osprey er en Chrome-udvidelse udviklet af JackCDK, og dens hovedfunktion er "osprey is a privacy respecting fork of the well known stylish".

Udvidelsesskærmbilleder

screenshot
screenshot

Download osprey-udvidelses-CRX-fil

Download osprey-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn osprey osprey
ID ekjapccimkannnfgcnnoajhfdglobgak
Officiel URL https://chromewebstore.google.com/detail/osprey/ekjapccimkannnfgcnnoajhfdglobgak
Beskrivelse osprey is a privacy respecting fork of the well known stylish
Filstørrelse 401 KB
Antal Installationer 496
Nuværende Version 1.0.4
Senest Opdateret 2022-07-09
Udgivelsesdato 2017-03-21
Bedømmelse 4.58/5 Samlet 24 Bedømmelser
Udvikler JackCDK
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/JackCDK/osprey
Hjælpeside-URL https://github.com/JackCDK/osprey/issues/new
Understøttede Sprog 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"
}