Wrapper Bot

A Chrome extension for easily wrapping selected text in custom defined HTML templates.

Wrapper Bot क्या है?

Wrapper Bot Jay Bats द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension for easily wrapping selected text in custom defined HTML templates."।

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

screenshot

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

crx प्रारूप में Wrapper Bot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Wrapper Bot allows you to wrap your text selections in custom HTML wrappers.

This way, you can easily apply often used stylings without having to manually type the HTML over and over again.                    

एक्सटेंशन की मूल जानकारी

नाम Wrapper Bot Wrapper Bot
ID omnmbcgclimiokggjlaljacckoaieagi
आधिकारिक URL https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi
विवरण A Chrome extension for easily wrapping selected text in custom defined HTML templates.
फ़ाइल का आकार 154 KB
स्थापना संख्या 38
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-05-29
प्रकाशन तिथि 2014-05-29
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर Jay Bats
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wrapper Bot",
    "version": "1.0",
    "manifest_version": 2,
    "description": "A Chrome extension for easily wrapping selected text in custom defined HTML templates.",
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1-min.js",
                "content.js"
            ]
        }
    ]
}