Dribbble Autozoom Extension

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

Dribbble Autozoom Extensionとは何ですか?

Dribbble Autozoom ExtensionはCarlos Rosoによって開発されたChromeの拡張機能で、その主な機能は「This extension will automagically zoom to 2x every shot you open in Dribbble」です。

拡張機能のスクリーンショット

Dribbble Autozoom Extension拡張機能のCRXファイルをダウンロード

Dribbble Autozoom Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}