Accordion Display

Show more or less text on with number keys.

O que é Accordion Display?

Accordion Display é uma extensão do Chrome desenvolvida por http://www.erichsen-group.com, e sua principal característica é "Show more or less text on with number keys.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Accordion Display

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

                        Accordion lets you read the main points, the full text, or anywhere in between of text content.

As long as the content includes Accordion markup, this extension will work. 

To use Accordion: (1) View Accordion compatible content. (2) Press the 1 key to view only the main points of a text, or 2 to get the main points and some supporting text, 3 for even more text, etc.

Create Accordion content: Its very easy to edit your existing content for Accordion and create new Accordion compatible content. Simply add [1][/1] around the main points of your content, [2][/2] around secondary, supporting text, [3][/3] around additional supporting text, etc.

Once you have installed Accordion, view the demonstration text:
http://icomaps.com/democity/accordion/                    

Informações Básicas da Extensão

Nome Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
URL Oficial https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Descrição Show more or less text on with number keys.
Tamanho do Arquivo 3.86 KB
Contagem de Instalações 47
Versão Atual 0.0.1
Última Atualização 2016-05-03
Data de Publicação 2016-05-03
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor http://www.erichsen-group.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://icomaps.com
URL da Página de Ajuda http://icomaps.com/democity/accordion/
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accordion Display",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Show more or less text on with number keys.",
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Show\/Hide Text"
    },
    "permissions": [
        "",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "web_accessible_resources": [
        "accordion.js"
    ]
}