Dribbble Autozoom Extension

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

Vad är Dribbble Autozoom Extension?

Dribbble Autozoom Extension är en Chrome-tillägg utvecklad av Carlos Roso, och dess huvudfunktion är "This extension will automagically zoom to 2x every shot you open in Dribbble".

Tilläggsskärmbilder

Ladda ner Dribbble Autozoom Extension-förlängningens CRX-fil

Ladda ner Dribbble Autozoom Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Google Chrome extension for automagically zooming any Dribbble shot.                    

Grundläggande Information om Tillägg

Namn Dribbble Autozoom Extension Dribbble Autozoom Extension
ID blmgbjebcflfapdhgnldmogaieaagioa
Officiell webbadress https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa
Beskrivning This extension will automagically zoom to 2x every shot you open in Dribbble
Filstorlek 7.05 KB
Antal Installationer 36
Aktuell Version 1.0
Senast Uppdaterad 2016-02-29
Publiceringsdatum 2016-02-29
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare Carlos Roso
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}