Web Developer Checklist
Analyses any web page for violations of best practices
What is Web Developer Checklist?
Web Developer Checklist is a Chrome extension developed by toptal.com, and its main feature is "Analyses any web page for violations of best practices".
Extension Screenshots
Download Web Developer Checklist Extension CRX File
Download Web Developer Checklist 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
Analyses any web page for violations of best practices. This extension helps web developers easily discover problem areas in websites. This is a companion extension for https://www.toptal.com/developers/webdevchecklist
Extension Basic Information
Name | Web Developer Checklist |
ID | iahamcpedabephpcgkeikbclmaljebjp |
Official URL | https://chromewebstore.google.com/detail/web-developer-checklist/iahamcpedabephpcgkeikbclmaljebjp |
Description | Analyses any web page for violations of best practices |
File Size | 32.65 KB |
Installation Count | 52,012 |
Current Version | 2.0.3 |
Last Updated | 2021-05-14 |
Publish Date | 2017-08-30 |
Rating | 4.19/5 Total 52 Ratings |
Developer | toptal.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.toptal.com/developers/webdevchecklist |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Developer Checklist", "version": "2.0.3", "author": "Toptal", "description": "Analyses any web page for violations of best practices", "permissions": [ "activeTab", "https:\/\/*\/", "http:\/\/*\/" ], "browser_specific_settings": { "gecko": { "id": "{65bf4dd0-b6df-44f7-9285-cb5545037d80}" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+W" } } }, "browser_action": { "default_icon": { "19": "icon-19.png", "48": "icon-48.png", "64": "icon-64.png", "128": "icon-128.png" }, "default_popup": "popup.html", "default_title": "Web Developer Checklist" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "19": "icon-19.png", "48": "icon-48.png", "64": "icon-64.png", "128": "icon-128.png" } } |