Themify Search Page

Gives a dark theme to the Google search page

Themify Search Page란 무엇입니까?

Themify Search Page은(는) devhl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gives a dark theme to the Google search page"입니다.

확장 프로그램 스크린샷

screenshot

Themify Search Page 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NOT AFFILIATED WITH GOOGLE!

Gives a dark theme to Google search results.

This release has a lot more detail.  If you want something changed, just ask.

v0.7 users can now modify the theme
v0.6 added limited support for Google Canada
v0.5 hanldes a change to an id field in the header
v0.4 Fixed for changed header classes
v0.3 CSS fix for a changed header on the search page
     Changed manifest to reflect icons
v0.2 Now themes the header and footer of the search page
v0.1 Initial release                    

확장 프로그램 기본 정보

이름 Themify Search Page Themify Search Page
ID iofpegbmbanlchohbchdmpkfholebpja
공식 URL https://chromewebstore.google.com/detail/themify-search-page/iofpegbmbanlchohbchdmpkfholebpja
설명 Gives a dark theme to the Google search page
파일 크기 48.39 KB
설치 횟수 40
현재 버전 0.7.0.0
최근 업데이트 2016-02-21
출시 날짜 2016-02-21
평점 5.00/5 총 3 개의 평점
개발자 devhl
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Themify Search Page",
    "description": "Gives a dark theme to the Google search page",
    "version": "0.7.0.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/www.google.com\/*",
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.ca\/*",
                "https:\/\/www.google.ca\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.google.com\/maps\/*"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "google.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "dark48.png",
            "38": "dark48.png"
        },
        "default_title": "Themify",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "dark16.png",
        "48": "dark48.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "google.css"
    ]
}