Quora Unblocker

Removes the login requirement and any nagging about it

Vad är Quora Unblocker?

Quora Unblocker är en Chrome-tillägg utvecklad av http://sindresorhus.com, och dess huvudfunktion är "Removes the login requirement and any nagging about it".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Quora Unblocker-förlängningens CRX-fil

Ladda ner Quora Unblocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
Officiell webbadress https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
Beskrivning Removes the login requirement and any nagging about it
Filstorlek 17.22 KB
Antal Installationer 3,000
Aktuell Version 1.1.2
Senast Uppdaterad 2020-11-19
Publiceringsdatum 2019-03-01
Betyg 3.65/5 Totalt 31 Betyg
Utvecklare http://sindresorhus.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/sindresorhus/quora-unblocker
Hjälpsida URL https://github.com/sindresorhus/quora-unblocker/issues
URL till Sekretesspolicy Sidan https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Stödda Språk 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"
            ]
        }
    ]
}