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.

Wat is All Answers for Quora?

All Answers for Quora is een Chrome-extensie ontwikkeld door k0pernikus, en de belangrijkste functie is "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".

Download het CRX-bestand van de extensie All Answers for Quora

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

                        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.                    

Basisinformatie over de Extensie

Naam All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
Officiële URL https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac
Beschrijving Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
Bestandsgrootte 24.74 KB
Aantal Installaties 397
Huidige Versie 0.2
Laatst Bijgewerkt 2013-07-07
Publicatiedatum 2013-07-07
Beoordeling 5.00/5 Totaal 8 Beoordelingen
Ontwikkelaar k0pernikus
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/k0pernikus/allAnswersForQuora
Help Pagina-URL https://github.com/k0pernikus/allAnswersForQuora/issues
Ondersteunde Talen 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
        }
    ]
}