Accordion Display

Show more or less text on with number keys.

Accordion Display क्या है?

Accordion Display http://www.erichsen-group.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show more or less text on with number keys."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Accordion Display एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}