Dribbble Autozoom Extension

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

Apa itu Dribbble Autozoom Extension?

Dribbble Autozoom Extension adalah ekstensi Chrome yang dikembangkan oleh Carlos Roso, dan fitur utamanya adalah "This extension will automagically zoom to 2x every shot you open in Dribbble".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Dribbble Autozoom Extension

Unduh file ekstensi Dribbble Autozoom Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Google Chrome extension for automagically zooming any Dribbble shot.                    

Informasi Dasar Ekstensi

Nama Dribbble Autozoom Extension Dribbble Autozoom Extension
ID blmgbjebcflfapdhgnldmogaieaagioa
URL Resmi https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa
Deskripsi This extension will automagically zoom to 2x every shot you open in Dribbble
Ukuran File 7.05 KB
Jumlah Instalasi 36
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-02-29
Tanggal Publikasi 2016-02-29
Penilaian 5.00/5 Total 6 Penilaian
Pengembang Carlos Roso
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}