Accordion Display

Show more or less text on with number keys.

What is Accordion Display?

Accordion Display is a Chrome extension developed by http://www.erichsen-group.com, and its main feature is "Show more or less text on with number keys.".

Extension Screenshots

Download Accordion Display Extension CRX File

Download Accordion Display extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
Official URL https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Description Show more or less text on with number keys.
File Size 3.86 KB
Installation Count 47
Current Version 0.0.1
Last Updated 2016-05-03
Publish Date 2016-05-03
Rating 1.00/5 Total 1 Ratings
Developer http://www.erichsen-group.com
Email [email protected]
Payment Type free
Extension Website http://icomaps.com
Help Page URL http://icomaps.com/democity/accordion/
Supported Languages 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"
    ]
}