Quora Unblocker

Removes the login requirement and any nagging about it

Was ist Quora Unblocker?

Quora Unblocker ist eine Chrome-Erweiterung, die von http://sindresorhus.com entwickelt wurde, und ihr Hauptmerkmal ist "Removes the login requirement and any nagging about it".

Erweiterungsscreenshots

screenshot
screenshot

Quora Unblocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quora Unblocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Quora Unblocker Quora Unblocker
ID pcjnlebeogfamlbeloiccdidgmaeojhe
Offizielle URL https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe
Beschreibung Removes the login requirement and any nagging about it
Dateigröße 17.22 KB
Installationsanzahl 3,000
Aktuelle Version 1.1.2
Letztes Update 2020-11-19
Veröffentlichungsdatum 2019-03-01
Bewertung 3.65/5 Insgesamt 31 Bewertungen
Entwickler http://sindresorhus.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sindresorhus/quora-unblocker
Hilfeseite URL https://github.com/sindresorhus/quora-unblocker/issues
URL der Datenschutzrichtlinien-Seite https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Unterstützte Sprachen 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"
            ]
        }
    ]
}