Visual Design Quick Tests
Easily apply filters to test the visual design of sites or files
什么是Visual Design Quick Tests?
Visual Design Quick Tests是由Adam Ruf开发的Chrome扩展程序,该扩展的主要功能是“Easily apply filters to test the visual design of sites or files”。
扩展截图
下载Visual Design Quick Tests扩展crx文件
下载Visual Design Quick Tests扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
👋 Designers, save time with Visual Design Quick Tests (VDQT). You can quickly test designs for visual contrast, balance, harmony, and more. You can also test the visual accessibility of your designs by simulating common forms of color blindness.
扩展基本信息
名称 | Visual Design Quick Tests |
ID | kdkdbeinbohlllbkgammmkienajaiimn |
官方URL | https://chromewebstore.google.com/detail/visual-design-quick-tests/kdkdbeinbohlllbkgammmkienajaiimn |
简介 | Easily apply filters to test the visual design of sites or files |
文件大小 | 180 KB |
安装次数 | 52 |
当前版本 | 0.0.4 |
更新时间 | 2019-02-24 |
上架时间 | 2019-02-24 |
评分 | 2.33/5 共3次评分 |
开发者 | Adam Ruf |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "0.0.4", "description": "__MSG_extDescription__", "manifest_version": 2, "permissions": [ "activeTab" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_title": "Visual Design Quick Tests", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "default_locale": "en", "web_accessible_resources": [ "img\/*" ] } |