Blow Up

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

什麼是Blow Up?

Blow Up是由fakob開發的Chrome擴展程式,該擴展的主要功能是“This extension enlarges a selected text by clicking the UP icon or pressing + ”。

擴展截圖

screenshot
screenshot

下載Blow Up擴展crx文件

下載Blow Up擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
官方網址 https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
簡介 This extension enlarges a selected text by clicking the UP icon or pressing +
檔案大小 8.24 KB
安裝次數 24
目前版本 0.1.1
更新時間 2017-06-23
上架時間 2017-06-23
開發者 fakob
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.fakob.com/
支援的語言 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"
            ]
        }
    ]
}