Blow Up

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

Wat is Blow Up?

Blow Up is een Chrome-extensie ontwikkeld door fakob, en de belangrijkste functie is "This extension enlarges a selected text by clicking the UP icon or pressing + ".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Blow Up

Download Blow Up-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
Officiële URL https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Beschrijving This extension enlarges a selected text by clicking the UP icon or pressing +
Bestandsgrootte 8.24 KB
Aantal Installaties 24
Huidige Versie 0.1.1
Laatst Bijgewerkt 2017-06-23
Publicatiedatum 2017-06-23
Ontwikkelaar fakob
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.fakob.com/
Ondersteunde Talen 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"
            ]
        }
    ]
}