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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}