Orange Mode

Browse the web in orange.

Orange Modeคืออะไร?

Orange Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย elliottcost และคุณลักษณะหลักของมันคือ "Browse the web in orange."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Orange Mode

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}