QuickReader

Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.

O que é QuickReader?

QuickReader é uma extensão do Chrome desenvolvida por Hopeful Llama, e sua principal característica é "Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão QuickReader

Baixe arquivos de extensão QuickReader 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

                        QuickReader is a light weight extension that allow you to select part of a web page, and use the QuickRead action to transfer your selection to a clearer and more spacious tab. This allows for easy reading of your selection, and maximises the usage of screen space. Especially useful for reading large amounts of text, such as documentation or articles. Also useful for when the page you are reading is cluttered with unrelated content like adverts or navigation menus.

Though the options, you can specify some basic CSS to adapt your QuickRead tab to your liking allowing for stylisation. Recommendation is to have a dark background, with light foreground elements.                    

Informações Básicas da Extensão

Nome QuickReader QuickReader
ID ibnoccdnpacmjpjaobalgiahopkkdlcl
URL Oficial https://chromewebstore.google.com/detail/quickreader/ibnoccdnpacmjpjaobalgiahopkkdlcl
Descrição Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.
Tamanho do Arquivo 229 KB
Contagem de Instalações 25
Versão Atual 0.0.0.1
Última Atualização 2014-09-03
Data de Publicação 2014-09-03
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor Hopeful Llama
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickReader",
    "short_name": "QR",
    "description": "Highlight and QuickRead parts of a web page to move them to a clearer and more spacious tab for easy reading.",
    "version": "0.0.0.1",
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "options.html",
        "default_icon": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}