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.

Cos'è All Answers for Quora?

All Answers for Quora è un'estensione di Chrome sviluppata da k0pernikus, e la sua funzione principale è "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".

Scarica il file CRX dell'estensione All Answers for Quora

Scarica i file di estensione All Answers for Quora in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
URL Ufficiale https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac
Descrizione Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
Dimensione del File 24.74 KB
Conteggio Installazioni 397
Versione Corrente 0.2
Ultimo Aggiornamento 2013-07-07
Data di Pubblicazione 2013-07-07
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore k0pernikus
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/k0pernikus/allAnswersForQuora
URL della Pagina di Aiuto https://github.com/k0pernikus/allAnswersForQuora/issues
Lingue Supportate 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
        }
    ]
}