Dark Theme for Yandex™

A highly customizable dark theme for Yandex homepage and search

Dark Theme for Yandex™란 무엇입니까?

Dark Theme for Yandex™은(는) balvin.perrie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A highly customizable dark theme for Yandex homepage and search"입니다.

확장 프로그램 스크린샷

screenshot

Dark Theme for Yandex™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension brings dark them (night mode) to Yandex homepage and Yandex search results. The extension is based on the inversion filter but offers custom user CSS code injection to fine-tune the theme to your needs. This extension also supports schedule on and off which allows the user to turn the dark them only during custom night time.

Note: If your browser has "allow access to search page results" option for extensions on the extensions manager, then you will need to accept it for the extension to be able to inject its CSS code.
Note: You can simply toggle the dark theme on and off from the toolbar button.                    

확장 프로그램 기본 정보

이름 Dark Theme for Yandex™ Dark Theme for Yandex™
ID ogbphfdkfdflhippnafcikpcdmfcbhhb
공식 URL https://chromewebstore.google.com/detail/dark-theme-for-yandex/ogbphfdkfdflhippnafcikpcdmfcbhhb
설명 A highly customizable dark theme for Yandex homepage and search
파일 크기 71.12 KB
설치 횟수 1,843
현재 버전 0.1.0
최근 업데이트 2019-04-30
출시 날짜 2019-04-30
평점 1.75/5 총 12 개의 평점
개발자 balvin.perrie
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://add0n.com/dark-theme.html?from=yandex
도움말 페이지 URL https://add0n.com/dark-theme.html?from=yandex
개인정보 보호 정책 페이지 URL https://add0n.com/policies/balvin.perrie.txt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.0",
    "name": "Dark Theme for Yandex\u2122",
    "description": "__MSG_app_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "alarms",
        "idle"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/yandex.com\/",
                "*:\/\/yandex.com\/search\/*"
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "data\/theme.css"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "19": "data\/icons\/19.png",
        "32": "data\/icons\/32.png",
        "38": "data\/icons\/38.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "homepage_url": "http:\/\/add0n.com\/dark-theme.html?from=yandex",
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "19": "data\/icons\/19.png",
            "32": "data\/icons\/32.png",
            "38": "data\/icons\/38.png",
            "64": "data\/icons\/64.png"
        }
    }
}