osprey

osprey is a privacy respecting fork of the well known stylish

ospreyとは何ですか?

ospreyはJackCDKによって開発されたChromeの拡張機能で、その主な機能は「osprey is a privacy respecting fork of the well known stylish」です。

拡張機能のスクリーンショット

screenshot
screenshot

osprey拡張機能のCRXファイルをダウンロード

osprey拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/JackCDK/osprey
ヘルプページのURL 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"
}