Quora Unblocker

Removes the login requirement and any nagging about it

Co to jest Quora Unblocker?

Quora Unblocker to rozszerzenie Chrome opracowane przez http://sindresorhus.com, a jego główną funkcją jest „Removes the login requirement and any nagging about it”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Quora Unblocker

Pobierz pliki rozszerzeń Quora Unblocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
Oficjalny URL https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
Opis Removes the login requirement and any nagging about it
Rozmiar pliku 17.22 KB
Liczba instalacji 3,000
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2020-11-19
Data Publikacji 2019-03-01
Ocena 3.65/5 Łącznie 31 Oceny
Deweloper http://sindresorhus.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sindresorhus/quora-unblocker
Adres URL Strony Pomocy https://github.com/sindresorhus/quora-unblocker/issues
Adres URL Strony Polityki Prywatności https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Obsługiwane Języki 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"
            ]
        }
    ]
}