Blow Up

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

What is Blow Up?

Blow Up is a Chrome extension developed by fakob, and its main feature is "This extension enlarges a selected text by clicking the UP icon or pressing + ".

Extension Screenshots

screenshot
screenshot

Download Blow Up Extension CRX File

Download Blow Up extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
Official URL https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Description This extension enlarges a selected text by clicking the UP icon or pressing +
File Size 8.24 KB
Installation Count 24
Current Version 0.1.1
Last Updated 2017-06-23
Publish Date 2017-06-23
Developer fakob
Email [email protected]
Payment Type free
Extension Website http://www.fakob.com/
Supported Languages 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"
            ]
        }
    ]
}