Blow Up

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

Blow Up là gì?

Blow Up là một tiện ích mở rộng Chrome được phát triển bởi fakob, và tính năng chính của nó là "This extension enlarges a selected text by clicking the UP icon or pressing + ".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Blow Up

Tải xuống các tệp mở rộng Blow Up dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Blow Up Blow Up
ID abhnhlekfjjonoigicgiejphfoapbdod
URL Chính Thức https://chromewebstore.google.com/detail/blow-up/abhnhlekfjjonoigicgiejphfoapbdod
Mô tả This extension enlarges a selected text by clicking the UP icon or pressing +
Kích Thước Tệp 8.24 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2017-06-23
Ngày Phát Hành 2017-06-23
Nhà Phát Triển fakob
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.fakob.com/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}