Accordion Display

Show more or less text on with number keys.

Co je Accordion Display?

Accordion Display je rozšíření Chrome vyvinuté http://www.erichsen-group.com, a jeho hlavní funkcí je „Show more or less text on with number keys.“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření Accordion Display

Stáhněte si soubory rozšíření Accordion Display ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
Oficiální URL https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Popis Show more or less text on with number keys.
Velikost souboru 3.86 KB
Počet instalací 47
Aktuální Verze 0.0.1
Poslední Aktualizace 2016-05-03
Datum Vydání 2016-05-03
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář http://www.erichsen-group.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://icomaps.com
URL Stránky Nápovědy http://icomaps.com/democity/accordion/
Podporované Jazyky 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"
    ]
}