osprey

osprey is a privacy respecting fork of the well known stylish

Qu'est-ce que osprey ?

osprey est une extension Chrome développée par JackCDK, et sa fonction principale est "osprey is a privacy respecting fork of the well known stylish".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension osprey

Téléchargez les fichiers d'extension osprey au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom osprey osprey
ID ekjapccimkannnfgcnnoajhfdglobgak
URL Officiel https://chromewebstore.google.com/detail/osprey/ekjapccimkannnfgcnnoajhfdglobgak
Description osprey is a privacy respecting fork of the well known stylish
Taille du Fichier 401 KB
Nombre d'Installations 496
Version Actuelle 1.0.4
Dernière Mise à Jour 2022-07-09
Date de Publication 2017-03-21
Évaluation 4.58/5 Total 24 Évaluations
Développeur JackCDK
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/JackCDK/osprey
URL de la Page d'Aide https://github.com/JackCDK/osprey/issues/new
Langues Prises en Charge 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"
}