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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
}