Orange Mode

Browse the web in orange.

什麼是Orange Mode?

Orange Mode是由elliottcost開發的Chrome擴展程式,該擴展的主要功能是“Browse the web in orange.”。

擴展截圖

screenshot

下載Orange Mode擴展crx文件

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

擴展使用說明

                        Orange mode adds to orange tint to your browsing experience. It's like wearing sunglasses while you surf the web.                    

擴展基本資訊

名稱 Orange Mode Orange Mode
ID mepnacjaekohjgikgdefcedghipcdbfa
官方網址 https://chromewebstore.google.com/detail/orange-mode/mepnacjaekohjgikgdefcedghipcdbfa
簡介 Browse the web in orange.
檔案大小 8.01 KB
安裝次數 53
目前版本 0.1
更新時間 2021-11-16
上架時間 2021-11-16
評分 3.67/5 共 3 次評分
開發者 elliottcost
電子郵箱 [email protected]
付費類型 free
擴展官網 http://elliott.computer/pages/orange-mode
說明頁面URL http://elliott.computer/pages/orange-mode
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Orange Mode",
    "manifest_version": 2,
    "version": "0.1",
    "description": "Browse the web in orange.",
    "browser_action": [],
    "icons": {
        "16": "off.png",
        "48": "on.png",
        "128": "on.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "orange.js"
            ]
        }
    ]
}