Blow Up

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

Cos'è Blow Up?

Blow Up è un'estensione di Chrome sviluppata da fakob, e la sua funzione principale è "This extension enlarges a selected text by clicking the UP icon or pressing + ".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Blow Up

Scarica i file di estensione Blow Up in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
URL Ufficiale https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Descrizione This extension enlarges a selected text by clicking the UP icon or pressing +
Dimensione del File 8.24 KB
Conteggio Installazioni 24
Versione Corrente 0.1.1
Ultimo Aggiornamento 2017-06-23
Data di Pubblicazione 2017-06-23
Sviluppatore fakob
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.fakob.com/
Lingue Supportate 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"
            ]
        }
    ]
}