Blow Up

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

Qu'est-ce que Blow Up ?

Blow Up est une extension Chrome développée par fakob, et sa fonction principale est "This extension enlarges a selected text by clicking the UP icon or pressing + ".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Blow Up

Téléchargez les fichiers d'extension Blow Up au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
URL Officiel https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Description This extension enlarges a selected text by clicking the UP icon or pressing +
Taille du Fichier 8.24 KB
Nombre d'Installations 24
Version Actuelle 0.1.1
Dernière Mise à Jour 2017-06-23
Date de Publication 2017-06-23
Développeur fakob
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.fakob.com/
Langues Prises en Charge 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"
            ]
        }
    ]
}