Dribbble Autozoom Extension

This extension will automagically zoom to 2x every shot you open in Dribbble

ما هو Dribbble Autozoom Extension؟

Dribbble Autozoom Extension هو إضافة Chrome تم تطويرها بواسطة Carlos Roso، والميزة الرئيسية لها هي "This extension will automagically zoom to 2x every shot you open in Dribbble".

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

تحميل ملف CRX للإضافة Dribbble Autozoom Extension

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

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

                        Google Chrome extension for automagically zooming any Dribbble shot.                    

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

الاسم Dribbble Autozoom Extension Dribbble Autozoom Extension
ID blmgbjebcflfapdhgnldmogaieaagioa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa
الوصف This extension will automagically zoom to 2x every shot you open in Dribbble
حجم الملف 7.05 KB
عدد التثبيتات 36
النسخة الحالية 1.0
آخر تحديث 2016-02-29
تاريخ النشر 2016-02-29
تقييم 5.00/5 مجموع تقييمات 6
المطور Carlos Roso
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dribbble Autozoom Extension",
    "description": "This extension will automagically zoom to 2x every shot you open in Dribbble",
    "author": "Carlos Roso",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Test"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.dribbble.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js",
        "script_delay.js"
    ]
}