Nitter Redirect

Redirects Twitter requests to Nitter, the privacy friendly alternative.

Co je Nitter Redirect?

Nitter Redirect je rozšíření Chrome vyvinuté Simon Brazell, a jeho hlavní funkcí je „Redirects Twitter requests to Nitter, the privacy friendly alternative.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Nitter Redirect

Stáhněte si soubory rozšíření Nitter Redirect 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í

                        No unnecessary permissions required, only listens for and redirects requests made to `twitter.com`, `www.twitter.com`, `mobile.twitter.com`, `pbs.twimg.com`  & `video.twimg.com`, nothing else.

Allows for setting custom instances and toggling redirects on/off.

★ Donate: 👨🏻‍💻
If you like this extension and are financially able please consider buying me a coffee to show your appreciation and support the continuation of the project.

☕️ https://www.buymeacoffee.com/SimonBrazell ☕️

★ What's New in This Version (v1.1.5): 🆕
• Now redirects Twitter URLs that include `/tweets` correctly.                    

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

Název Nitter Redirect Nitter Redirect
ID mohaicophfnifehkkkdbcejkflmgfkof
Oficiální URL https://chromewebstore.google.com/detail/nitter-redirect/mohaicophfnifehkkkdbcejkflmgfkof
Popis Redirects Twitter requests to Nitter, the privacy friendly alternative.
Velikost souboru 17.25 KB
Počet instalací 10,342
Aktuální Verze 1.1.5
Poslední Aktualizace 2020-07-27
Datum Vydání 2020-03-28
Hodnocení 4.41/5 Celkem 22 Hodnocení
Vývojář Simon Brazell
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/SimonBrazell/nitter-redirect
URL Stránky Nápovědy https://github.com/SimonBrazell/nitter-redirect/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nitter Redirect",
    "description": "Redirects Twitter requests to Nitter, the privacy friendly alternative.",
    "version": "1.1.5",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/www.twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*",
                "*:\/\/pbs.twimg.com\/*",
                "*:\/\/video.twimg.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/twitter.com\/*",
        "*:\/\/www.twitter.com\/*",
        "*:\/\/mobile.twitter.com\/*",
        "*:\/\/pbs.twimg.com\/*",
        "*:\/\/video.twimg.com\/*"
    ],
    "browser_action": {
        "default_popup": "pages\/popup\/popup.html",
        "default_icon": {
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{513646f8-fb87-4135-a41e-4cf1d1ccccf2}"
        }
    }
}