Web Dev Kit
Tools to facilitate web development
什麼是Web Dev Kit?
Web Dev Kit是由james south開發的Chrome擴展程式,該擴展的主要功能是“Tools to facilitate web development”。
擴展截圖
下載Web Dev Kit擴展crx文件
下載Web Dev Kit擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Every browser window can of course be minimized, maximized and restored down to its previous size. Web Dev Kit augments those native options with two more (so far): dock in either the left or right half of the screen (I intend to expand these options soon). Great for web development or coding along to tutorials! Just click the icon to open the menu and then click the left or right arrow! Currently there are no options and no special permissions are required. Promotional art includes laptop image (minus screen image and shadow) and Stout Scarab image by Pixabay users janjf93 and Mark Thomas, respectively. All other elements either public domain or original. This is an open source project and you can see the code and file issues here: https://github.com/jamessouth/webdevkit Thank you!
擴展基本資訊
名稱 | Web Dev Kit |
ID | geedfiohcopjhgancckdfanhobhfbgmm |
官方網址 | https://chromewebstore.google.com/detail/web-dev-kit/geedfiohcopjhgancckdfanhobhfbgmm |
簡介 | Tools to facilitate web development |
檔案大小 | 29.1 KB |
安裝次數 | 40 |
目前版本 | 1.0.1 |
更新時間 | 2019-05-10 |
上架時間 | 2019-05-10 |
開發者 | james south |
付費類型 | free |
擴展官網 | https://github.com/jamessouth/webdevkit |
說明頁面URL | https://github.com/jamessouth/webdevkit/issues |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web Dev Kit", "short_name": "Web Dev Kit", "version": "1.0.1", "description": "Tools to facilitate web development", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/wdk16.png", "32": "icons\/wdk32.png", "48": "icons\/wdk48.png", "128": "icons\/wdk128.png" } }, "icons": { "16": "icons\/wdk16.png", "32": "icons\/wdk32.png", "48": "icons\/wdk48.png", "128": "icons\/wdk128.png" }, "manifest_version": 2 } |