Extension Developer Tools - Shortcuts
Many shortcuts for chrome extensions development.
什么是Extension Developer Tools - Shortcuts?
Extension Developer Tools - Shortcuts是由Jonathan Defraiteur开发的Chrome扩展程序,该扩展的主要功能是“Many shortcuts for chrome extensions development.”。
扩展截图
下载Extension Developer Tools - Shortcuts扩展crx文件
下载Extension Developer Tools - Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
(Alpha)
Give useful shortcuts for chrome extensions development.
Access in one click to :
📊 — Dashboard (webstore developer)
🎛 — Extensions management
🛠 — Chrome Apps & Extensions Developer Tool
📚 — API Documentation
🛍 — Web Store
*** Scheduled *** 📅
- Display informations about your own extensions
- For each extension, links to :
- webstore developer edit
- statistics (webstore developer)
- chrome store page
- options
- comments
- Allow to switch between developer version and published
*** 扩展基本信息
| 名称 | |
| ID | pcelanjifbkankdncepnkfheicponofn |
| 官方URL | https://chrome.google.com/webstore/detail/extension-developer-tools/pcelanjifbkankdncepnkfheicponofn |
| 简介 | Many shortcuts for chrome extensions development. |
| 文件大小 | 65.19 KB |
| 安装次数 | 621 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2018-07-25 |
| 上架时间 | 2018-07-25 |
| 评分 | 4.80/5 共5次评分 |
| 开发者 | Jonathan Defraiteur |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://jonathandefraiteur.me/privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDesc__",
"author": "Jonathan Defraiteur",
"version": "0.0.2",
"default_locale": "en",
"browser_action": {
"default_title": "__MSG_extTitle__",
"default_icon": {
"19": "icons\/icon-19.png",
"38": "icons\/icon-38.png"
},
"default_popup": "popup.html"
},
"permissions": [
"management",
"tabs"
],
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
} | |