Accordion Display

Show more or less text on with number keys.

Accordion Display là gì?

Accordion Display là một tiện ích mở rộng Chrome được phát triển bởi http://www.erichsen-group.com, và tính năng chính của nó là "Show more or less text on with number keys.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Accordion Display

Tải xuống các tệp mở rộng Accordion Display dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Accordion Display Accordion Display
ID ahnfnbnadopmloofgoigdhkkjmpfjhld
URL Chính Thức https://chrome.google.com/webstore/detail/accordion-display/ahnfnbnadopmloofgoigdhkkjmpfjhld
Mô tả Show more or less text on with number keys.
Kích Thước Tệp 3.86 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2016-05-03
Ngày Phát Hành 2016-05-03
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://www.erichsen-group.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://icomaps.com
URL Trang Trợ Giúp http://icomaps.com/democity/accordion/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}