Nitter Redirect

Redirects Twitter requests to Nitter, the privacy friendly alternative.

ما هو Nitter Redirect؟

Nitter Redirect هو إضافة Chrome تم تطويرها بواسطة Simon Brazell، والميزة الرئيسية لها هي "Redirects Twitter requests to Nitter, the privacy friendly alternative.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Nitter Redirect

قم بتنزيل ملفات الامتداد Nitter Redirect بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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}"
        }
    }
}