Dribbble Autozoom Extension

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

Dribbble Autozoom Extension là gì?

Dribbble Autozoom Extension là một tiện ích mở rộng Chrome được phát triển bởi Carlos Roso, và tính năng chính của nó là "This extension will automagically zoom to 2x every shot you open in Dribbble".

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

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

Tải xuống các tệp mở rộng Dribbble Autozoom Extension 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

                        Google Chrome extension for automagically zooming any Dribbble shot.                    

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

Tên Dribbble Autozoom Extension Dribbble Autozoom Extension
ID blmgbjebcflfapdhgnldmogaieaagioa
URL Chính Thức https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa
Mô tả This extension will automagically zoom to 2x every shot you open in Dribbble
Kích Thước Tệp 7.05 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-02-29
Ngày Phát Hành 2016-02-29
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Carlos Roso
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}