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.

Qu'est-ce que All Answers for Quora ?

All Answers for Quora est une extension Chrome développée par k0pernikus, et sa fonction principale est "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".

Télécharger le fichier CRX de l'extension All Answers for Quora

Téléchargez les fichiers d'extension All Answers for Quora au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
URL Officiel https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac
Description Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
Taille du Fichier 24.74 KB
Nombre d'Installations 397
Version Actuelle 0.2
Dernière Mise à Jour 2013-07-07
Date de Publication 2013-07-07
Évaluation 5.00/5 Total 8 Évaluations
Développeur k0pernikus
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/k0pernikus/allAnswersForQuora
URL de la Page d'Aide https://github.com/k0pernikus/allAnswersForQuora/issues
Langues Prises en Charge 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
        }
    ]
}