Accordion Display

Show more or less text on with number keys.

Что такое Accordion Display?

Accordion Display - это расширение Chrome, разработанное http://www.erichsen-group.com, и его основная функция - "Show more or less text on with number keys.".

Снимки экрана расширения

Скачать файл CRX расширения Accordion Display

Скачайте файлы расширений Accordion Display в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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/                    

Основная информация о расширении

Название Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
Официальный URL https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Описание Show more or less text on with number keys.
Размер файла 3.86 KB
Количество установок 47
Текущая Версия 0.0.1
Последнее Обновление 2016-05-03
Дата публикации 2016-05-03
Рейтинг 1.00/5 Всего 1 оценок
Разработчик http://www.erichsen-group.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://icomaps.com
URL страницы помощи http://icomaps.com/democity/accordion/
Поддерживаемые языки 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"
    ]
}