Dribbble Autozoom Extension

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

Qu'est-ce que Dribbble Autozoom Extension ?

Dribbble Autozoom Extension est une extension Chrome développée par Carlos Roso, et sa fonction principale est "This extension will automagically zoom to 2x every shot you open in Dribbble".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Dribbble Autozoom Extension

Téléchargez les fichiers d'extension Dribbble Autozoom Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Google Chrome extension for automagically zooming any Dribbble shot.                    

Informations de Base sur l'Extension

Nom Dribbble Autozoom Extension Dribbble Autozoom Extension
ID blmgbjebcflfapdhgnldmogaieaagioa
URL Officiel https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa
Description This extension will automagically zoom to 2x every shot you open in Dribbble
Taille du Fichier 7.05 KB
Nombre d'Installations 36
Version Actuelle 1.0
Dernière Mise à Jour 2016-02-29
Date de Publication 2016-02-29
Évaluation 5.00/5 Total 6 Évaluations
Développeur Carlos Roso
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}