Blow Up

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

Co to jest Blow Up?

Blow Up to rozszerzenie Chrome opracowane przez fakob, a jego główną funkcją jest „This extension enlarges a selected text by clicking the UP icon or pressing + ”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Blow Up

Pobierz pliki rozszerzeń Blow Up w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
Oficjalny URL https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Opis This extension enlarges a selected text by clicking the UP icon or pressing +
Rozmiar pliku 8.24 KB
Liczba instalacji 24
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2017-06-23
Data Publikacji 2017-06-23
Deweloper fakob
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.fakob.com/
Obsługiwane Języki 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"
            ]
        }
    ]
}