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