Blow Up

This extension enlarges a selected text by clicking the UP icon or pressing +

Blow Up क्या है?

Blow Up fakob द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension enlarges a selected text by clicking the UP icon or pressing + "।

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

screenshot
screenshot

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

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

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

                        Ever wanted to highlight and enlarge some text? Just select the text and click the UP icon or press  + .                    

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

नाम Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
आधिकारिक URL https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
विवरण This extension enlarges a selected text by clicking the UP icon or pressing +
फ़ाइल का आकार 8.24 KB
स्थापना संख्या 24
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2017-06-23
प्रकाशन तिथि 2017-06-23
डेवलपर fakob
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.fakob.com/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blow Up",
    "description": "This extension enlarges a selected text by clicking the UP icon or pressing  + ",
    "version": "0.1.1",
    "manifest_version": 2,
    "icons": {
        "128": "BlowUp-Icon-128.png"
    },
    "browser_action": {
        "default_icon": "BlowUp-Icon.png",
        "default_title": "Click here to enlarge a selected text or press  + "
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "blowup.css"
            ],
            "js": [
                "runblowup.js"
            ]
        }
    ]
}