Dribbble Autozoom Extension
This extension will automagically zoom to 2x every shot you open in Dribbble
What is Dribbble Autozoom Extension?
Dribbble Autozoom Extension is a Chrome extension developed by Carlos Roso, and its main feature is "This extension will automagically zoom to 2x every shot you open in Dribbble".
Extension Screenshots
Download Dribbble Autozoom Extension Extension CRX File
Download Dribbble Autozoom Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Google Chrome extension for automagically zooming any Dribbble shot.
Extension Basic Information
Name | |
ID | blmgbjebcflfapdhgnldmogaieaagioa |
Official URL | https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa |
Description | This extension will automagically zoom to 2x every shot you open in Dribbble |
File Size | 7.05 KB |
Installation Count | 36 |
Current Version | 1.0 |
Last Updated | 2016-02-29 |
Publish Date | 2016-02-29 |
Rating | 5.00/5 Total 6 Ratings |
Developer | Carlos Roso |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |