Accordion Display

Show more or less text on with number keys.

什麼是Accordion Display?

Accordion Display是由http://www.erichsen-group.com開發的Chrome擴展程式,該擴展的主要功能是“Show more or less text on with number keys.”。

擴展截圖

下載Accordion Display擴展crx文件

下載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
官方網址 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"
    ]
}