Old Reddit Redirect

Ensure Reddit always loads the old design, except when using new.reddit.com links

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

Old Reddit Redirect - это расширение Chrome, разработанное Unknown, и его основная функция - "Ensure Reddit always loads the old design, except when using new.reddit.com links".

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

screenshot

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

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

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

                        Redirects Reddit links to old.reddit.com, except when using new.reddit.com
The new.reddit.com redirect is what distinguishes it from the extension it was based on.
Based on https://chrome.google.com/webstore/detail/old-reddit-redirect/dneaehbmnbhcippjikoajpoabadpodje?hl=en-US                    

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

Название Old Reddit Redirect Old Reddit Redirect
ID npidphabboicbpfnemnaohbngaikfmbh
Официальный URL https://chromewebstore.google.com/detail/old-reddit-redirect/npidphabboicbpfnemnaohbngaikfmbh
Описание Ensure Reddit always loads the old design, except when using new.reddit.com links
Размер файла 447 KB
Количество установок 51
Текущая Версия 2.0.0
Последнее Обновление 2020-04-21
Дата публикации 2020-04-21
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Reddit Redirect",
    "description": "Ensure Reddit always loads the old design, except when using new.reddit.com links",
    "version": "2.0.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/reddit.com\/*",
        "*:\/\/www.reddit.com\/*",
        "*:\/\/np.reddit.com\/*",
        "*:\/\/old.reddit.com\/*"
    ]
}