Accordion Display

Show more or less text on with number keys.

Qu'est-ce que Accordion Display ?

Accordion Display est une extension Chrome développée par http://www.erichsen-group.com, et sa fonction principale est "Show more or less text on with number keys.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Accordion Display

Téléchargez les fichiers d'extension Accordion Display au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
URL Officiel https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Description Show more or less text on with number keys.
Taille du Fichier 3.86 KB
Nombre d'Installations 47
Version Actuelle 0.0.1
Dernière Mise à Jour 2016-05-03
Date de Publication 2016-05-03
Évaluation 1.00/5 Total 1 Évaluations
Développeur http://www.erichsen-group.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://icomaps.com
URL de la Page d'Aide http://icomaps.com/democity/accordion/
Langues Prises en Charge 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"
    ]
}