Twitter Lite Redirector

Redirect to mobile.twitter.com from twitter.com

什麼是Twitter Lite Redirector?

Twitter Lite Redirector是由https://1000ch.github.io/twitter-lite-redirector開發的Chrome擴展程式,該擴展的主要功能是“Redirect to mobile.twitter.com from twitter.com”。

擴展截圖

screenshot

下載Twitter Lite Redirector擴展crx文件

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

擴展使用說明

                        Redirect to mobile.twitter.com from twitter.com                    

擴展基本資訊

名稱 Twitter Lite Redirector Twitter Lite Redirector
ID lladjhcgddekbpbcoojbpcifkjhjdnjp
官方網址 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
}