Quora Unblocker

Removes the login requirement and any nagging about it

Что такое Quora Unblocker?

Quora Unblocker - это расширение Chrome, разработанное http://sindresorhus.com, и его основная функция - "Removes the login requirement and any nagging about it".

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

screenshot
screenshot

Скачать файл CRX расширения Quora Unblocker

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

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

                        Quora has a quite obscure way to view content without logging [0] in by appending `?share=1` to the url. This extensions appends that to every Quora url you visit in addition to removing some annoying login nags.

[0]: http://blog.quora.com/Making-Sharing-Better                    

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

Название Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
Официальный URL https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
Описание Removes the login requirement and any nagging about it
Размер файла 17.22 KB
Количество установок 3,000
Текущая Версия 1.1.2
Последнее Обновление 2020-11-19
Дата публикации 2019-03-01
Рейтинг 3.65/5 Всего 31 оценок
Разработчик http://sindresorhus.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sindresorhus/quora-unblocker
URL страницы помощи https://github.com/sindresorhus/quora-unblocker/issues
URL страницы политики конфиденциальности https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quora Unblocker",
    "version": "1.1.2",
    "description": "Removes the login requirement and any nagging about it",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/quora-unblocker",
    "manifest_version": 2,
    "minimum_chrome_version": "65",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/quora.com\/*",
        "*:\/\/www.quora.com\/*"
    ],
    "background": {
        "scripts": [
            "query-string.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/quora.com\/*",
                "*:\/\/www.quora.com\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}