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.

O que é All Answers for Quora?

All Answers for Quora é uma extensão do Chrome desenvolvida por k0pernikus, e sua principal característica é "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".

Baixar o arquivo CRX da Extensão All Answers for Quora

Baixe arquivos de extensão All Answers for Quora no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome All Answers for Quora All Answers for Quora
ID oibecpjfbcfhiijpppnjinnnoldjmiac
URL Oficial https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac
Descrição Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
Tamanho do Arquivo 24.74 KB
Contagem de Instalações 397
Versão Atual 0.2
Última Atualização 2013-07-07
Data de Publicação 2013-07-07
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor k0pernikus
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/k0pernikus/allAnswersForQuora
URL da Página de Ajuda https://github.com/k0pernikus/allAnswersForQuora/issues
Idiomas Suportados 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
        }
    ]
}