All Answers for Quora

Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.

Was ist All Answers for Quora?

All Answers for Quora ist eine Chrome-Erweiterung, die von k0pernikus entwickelt wurde, und ihr Hauptmerkmal ist "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".

All Answers for Quora-Erweiterungs-CRX-Datei herunterladen

Laden Sie All Answers for Quora-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

                        If you are annoyed by being asked to register everytime you stumble across a quora.com question, and all you want to do is cut to the chase, this little extension let you do that.

Read all the Answers without the BS.

For the technical interested: All this extension does it adding a little get parameter, as quora has this feature already in place when people share their stuff in social media.                    

Grundlegende Informationen zur Erweiterung

Name All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
Offizielle URL https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac
Beschreibung Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
Dateigröße 24.74 KB
Installationsanzahl 397
Aktuelle Version 0.2
Letztes Update 2013-07-07
Veröffentlichungsdatum 2013-07-07
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler k0pernikus
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/k0pernikus/allAnswersForQuora
Hilfeseite URL https://github.com/k0pernikus/allAnswersForQuora/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "All Answers for Quora",
    "version": "0.2",
    "description": "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/www.quora.com\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.quora.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}