Twitter Lite Redirector

Redirect to mobile.twitter.com from twitter.com

Twitter Lite Redirectorคืออะไร?

Twitter Lite Redirector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://1000ch.github.io/twitter-lite-redirector และคุณลักษณะหลักของมันคือ "Redirect to mobile.twitter.com from twitter.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Lite Redirector

ดาวน์โหลดไฟล์ส่วนขยาย Twitter Lite Redirector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Redirect to mobile.twitter.com from twitter.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter Lite Redirector Twitter Lite Redirector
ID lladjhcgddekbpbcoojbpcifkjhjdnjp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/twitter-lite-redirector/lladjhcgddekbpbcoojbpcifkjhjdnjp
คำอธิบาย Redirect to mobile.twitter.com from twitter.com
ขนาดไฟล์ 7.69 KB
จำนวนการติดตั้ง 85
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2018-11-10
วันที่เผยแพร่ 2018-11-10
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://1000ch.github.io/twitter-lite-redirector
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Lite Redirector",
    "version": "0.6.0",
    "description": "Redirect to mobile.twitter.com from twitter.com",
    "manifest_version": 2,
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "64": "img\/64.png",
        "128": "img\/128.png"
    },
    "browser_action": {
        "default_title": "Twitter Lite Redirector"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/twitter.com\/intent\/*",
                "https:\/\/twitter.com\/share*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "background",
        "storage",
        "https:\/\/twitter.com\/*"
    ],
    "offline_enabled": false
}