Accordion Display

Show more or less text on with number keys.

Co to jest Accordion Display?

Accordion Display to rozszerzenie Chrome opracowane przez http://www.erichsen-group.com, a jego główną funkcją jest „Show more or less text on with number keys.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Accordion Display

Pobierz pliki rozszerzeń Accordion Display w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
Oficjalny URL https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Opis Show more or less text on with number keys.
Rozmiar pliku 3.86 KB
Liczba instalacji 47
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2016-05-03
Data Publikacji 2016-05-03
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper http://www.erichsen-group.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://icomaps.com
Adres URL Strony Pomocy http://icomaps.com/democity/accordion/
Obsługiwane Języki 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"
    ]
}