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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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}"
        }
    }
}