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 |
Eメール | [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\/*" ] } |