Quora Unblocker

Removes the login requirement and any nagging about it

Wat is Quora Unblocker?

Quora Unblocker is een Chrome-extensie ontwikkeld door http://sindresorhus.com, en de belangrijkste functie is "Removes the login requirement and any nagging about it".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Quora Unblocker

Download Quora Unblocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
Officiële URL https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
Beschrijving Removes the login requirement and any nagging about it
Bestandsgrootte 17.22 KB
Aantal Installaties 3,000
Huidige Versie 1.1.2
Laatst Bijgewerkt 2020-11-19
Publicatiedatum 2019-03-01
Beoordeling 3.65/5 Totaal 31 Beoordelingen
Ontwikkelaar http://sindresorhus.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/sindresorhus/quora-unblocker
Help Pagina-URL https://github.com/sindresorhus/quora-unblocker/issues
URL van de Privacybeleid Pagina https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Ondersteunde Talen 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"
            ]
        }
    ]
}