Twitter Lite Redirector

Redirect to mobile.twitter.com from twitter.com

Co je Twitter Lite Redirector?

Twitter Lite Redirector je rozšíření Chrome vyvinuté https://1000ch.github.io/twitter-lite-redirector, a jeho hlavní funkcí je „Redirect to mobile.twitter.com from twitter.com“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitter Lite Redirector

Stáhněte si soubory rozšíření Twitter Lite Redirector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Redirect to mobile.twitter.com from twitter.com                    

Základní Informace o Rozšíření

Název Twitter Lite Redirector Twitter Lite Redirector
ID lladjhcgddekbpbcoojbpcifkjhjdnjp
Oficiální URL https://chrome.google.com/webstore/detail/twitter-lite-redirector/lladjhcgddekbpbcoojbpcifkjhjdnjp
Popis Redirect to mobile.twitter.com from twitter.com
Velikost souboru 7.69 KB
Počet instalací 85
Aktuální Verze 0.6.0
Poslední Aktualizace 2018-11-10
Datum Vydání 2018-11-10
Hodnocení 4.20/5 Celkem 5 Hodnocení
Vývojář https://1000ch.github.io/twitter-lite-redirector
Typ Platby free
Podporované Jazyky 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
}