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.
扩展基本信息
名称 | |
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 |
电子邮箱 | [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" ] } |