Accordion Display

Show more or less text on with number keys.

Cos'è Accordion Display?

Accordion Display è un'estensione di Chrome sviluppata da http://www.erichsen-group.com, e la sua funzione principale è "Show more or less text on with number keys.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Accordion Display

Scarica i file di estensione Accordion Display 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

                        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/                    

Informazioni di Base sull'Estensione

Nome Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
URL Ufficiale https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Descrizione Show more or less text on with number keys.
Dimensione del File 3.86 KB
Conteggio Installazioni 47
Versione Corrente 0.0.1
Ultimo Aggiornamento 2016-05-03
Data di Pubblicazione 2016-05-03
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore http://www.erichsen-group.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://icomaps.com
URL della Pagina di Aiuto http://icomaps.com/democity/accordion/
Lingue Supportate 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"
    ]
}