Blow Up

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

Apa itu Blow Up?

Blow Up adalah ekstensi Chrome yang dikembangkan oleh fakob, dan fitur utamanya adalah "This extension enlarges a selected text by clicking the UP icon or pressing + ".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Blow Up

Unduh file ekstensi Blow Up dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
URL Resmi https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Deskripsi This extension enlarges a selected text by clicking the UP icon or pressing +
Ukuran File 8.24 KB
Jumlah Instalasi 24
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2017-06-23
Tanggal Publikasi 2017-06-23
Pengembang fakob
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.fakob.com/
Bahasa yang Didukung 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"
            ]
        }
    ]
}