Nitter Redirect

Redirects Twitter requests to Nitter, the privacy friendly alternative.

Nitter Redirect क्या है?

Nitter Redirect Simon Brazell द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects Twitter requests to Nitter, the privacy friendly alternative."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Nitter Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Nitter Redirect Nitter Redirect
ID mohaicophfnifehkkkdbcejkflmgfkof
आधिकारिक URL https://chromewebstore.google.com/detail/nitter-redirect/mohaicophfnifehkkkdbcejkflmgfkof
विवरण Redirects Twitter requests to Nitter, the privacy friendly alternative.
फ़ाइल का आकार 17.25 KB
स्थापना संख्या 10,342
वर्तमान संस्करण 1.1.5
अंतिम अपडेट 2020-07-27
प्रकाशन तिथि 2020-03-28
रेटिंग 4.41/5 कुल 22 रेटिंग्स
डेवलपर Simon Brazell
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/SimonBrazell/nitter-redirect
सहायता पृष्ठ URL https://github.com/SimonBrazell/nitter-redirect/issues
समर्थित भाषाएँ 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}"
        }
    }
}