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
官方URL 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"
            ]
        }
    ]
}