Product Dark

Turn Product Hunt dark for nighttime hunting.

什麼是Product Dark?

Product Dark是由https://derekbtw.com開發的Chrome擴展程式,該擴展的主要功能是“Turn Product Hunt dark for nighttime hunting.”。

擴展截圖

screenshot
screenshot

下載Product Dark擴展crx文件

下載Product Dark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        New in 3.0.1

- Made it so profile headers are shown
- Text color changed to white in profile settings
- Other color improvements throughout the site                    

擴展基本資訊

名稱 Product Dark Product Dark
ID nbppndomekcebmldijnlmlmhidepkmbg
官方網址 https://chromewebstore.google.com/detail/product-dark/nbppndomekcebmldijnlmlmhidepkmbg
簡介 Turn Product Hunt dark for nighttime hunting.
檔案大小 699 KB
安裝次數 68
目前版本 3.0.1
更新時間 2017-08-21
上架時間 2017-08-21
評分 2.50/5 共 4 次評分
開發者 https://derekbtw.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://derekbtw.com
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Product Dark",
    "version": "3.0.1",
    "description": "Turn Product Hunt dark for nighttime hunting.",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/producthunt.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.producthunt.com\/*"
            ],
            "js": [
                "product-dark.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Toggle Dark Theme"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "product-dark.css"
    ]
}