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
电子邮箱 [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"
}