Magnify

Hover over an image with a magnifying glass

ما هو Magnify؟

Magnify هو إضافة Chrome تم تطويرها بواسطة reinaldomagalhaes96، والميزة الرئيسية لها هي "Hover over an image with a magnifying glass".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Magnify

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

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

                        Simple tool used for looking at small details in images.                    

معلومات أساسية عن التمديد

الاسم Magnify Magnify
ID dhhmlkhlndebglfokofodmpojiejhahm
عنوان URL الرسمي https://chromewebstore.google.com/detail/magnify/dhhmlkhlndebglfokofodmpojiejhahm
الوصف Hover over an image with a magnifying glass
حجم الملف 91.29 KB
عدد التثبيتات 69
النسخة الحالية 1.0
آخر تحديث 2020-08-19
تاريخ النشر 2020-07-20
تقييم 4.00/5 مجموع تقييمات 2
المطور reinaldomagalhaes96
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Magnify",
    "version": "1.0",
    "description": "Hover over an image with a magnifying glass",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.js",
                "zoom.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/magnify.png",
            "32": "images\/magnify32.png",
            "48": "images\/magnify48.png",
            "128": "images\/magnify128.png"
        }
    },
    "icons": {
        "16": "images\/magnify.png",
        "32": "images\/magnify32.png",
        "48": "images\/magnify48.png",
        "128": "images\/magnify128.png"
    },
    "manifest_version": 2
}