Blow Up

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

ما هو Blow Up؟

Blow Up هو إضافة Chrome تم تطويرها بواسطة fakob، والميزة الرئيسية لها هي "This extension enlarges a selected text by clicking the UP icon or pressing + ".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Blow Up

قم بتنزيل ملفات الامتداد Blow Up بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}