Dribbble Autozoom Extension
This extension will automagically zoom to 2x every shot you open in Dribbble
Wat is Dribbble Autozoom Extension?
Dribbble Autozoom Extension is een Chrome-extensie ontwikkeld door Carlos Roso, en de belangrijkste functie is "This extension will automagically zoom to 2x every shot you open in Dribbble".
Extensie Screenshots
Download het CRX-bestand van de extensie Dribbble Autozoom Extension
Download Dribbble Autozoom Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Google Chrome extension for automagically zooming any Dribbble shot.
Basisinformatie over de Extensie
Naam | |
ID | blmgbjebcflfapdhgnldmogaieaagioa |
Officiële URL | https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa |
Beschrijving | This extension will automagically zoom to 2x every shot you open in Dribbble |
Bestandsgrootte | 7.05 KB |
Aantal Installaties | 36 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-02-29 |
Publicatiedatum | 2016-02-29 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Carlos Roso |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |