Best Reddit Redirect

Only Reddit redirect extension you need. Easily toggle between old, new and i Reddit. Try it today!

Что такое Best Reddit Redirect?

Best Reddit Redirect - это расширение Chrome, разработанное kevin50jiang, и его основная функция - "Only Reddit redirect extension you need. Easily toggle between old, new and i Reddit. Try it today!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Best Reddit Redirect

Скачайте файлы расширений Best Reddit Redirect в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Easily all Reddit visits towards the type of your choice! Choose and toggle between old.reddit.com, new.reddit.com, and i.reddit.com. 

Click on the extension button to toggle between websites. 

View the source code, or help contribute at: https://github.com/kevin51jiang/Best-Reddit-Redirect                    

Основная информация о расширении

Название Best Reddit Redirect Best Reddit Redirect
ID jclhpbepnmagnghkmlhndajahfpimigm
Официальный URL https://chromewebstore.google.com/detail/best-reddit-redirect/jclhpbepnmagnghkmlhndajahfpimigm
Описание Only Reddit redirect extension you need. Easily toggle between old, new and i Reddit. Try it today!
Размер файла 21.19 KB
Количество установок 174
Текущая Версия 0.3
Последнее Обновление 2022-08-09
Дата публикации 2022-08-09
Рейтинг 5.00/5 Всего 3 оценок
Разработчик kevin50jiang
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kevin51jiang/Best-Reddit-Redirect
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Best Reddit Redirect",
    "description": "Only Reddit redirect extension you need. Easily toggle between old, new and i Reddit. Try it today!",
    "manifest_version": 3,
    "version": "0.3",
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "icons": {
        "16": "logo_16.png",
        "32": "logo_32.png",
        "48": "logo_48.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "*:\/\/reddit.com\/*",
        "*:\/\/*.reddit.com\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "i",
                "enabled": true,
                "path": "redirect_i.json"
            },
            {
                "id": "old",
                "enabled": true,
                "path": "redirect_old.json"
            },
            {
                "id": "new",
                "enabled": true,
                "path": "redirect_new.json"
            }
        ]
    },
    "action": {
        "default_title": "Change redirect"
    },
    "background": {
        "service_worker": "background.js"
    }
}