Development Tools
Chrome Extension for Developers
什么是Development Tools?
Development Tools是由Alexandru Berce开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension for Developers”。
扩展截图
下载Development Tools扩展crx文件
下载Development Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features:
- base64 encode/decode, url encode/decode
- Encrypt string with MD5 / SHA1 / password_hash
- Generate random strings, word count, word frequency and more
- Time operations 扩展基本信息
| 名称 | |
| ID | ghncpdlcoobnpajagafbdjdfhhmjkchl |
| 官方URL | https://chrome.google.com/webstore/detail/development-tools/ghncpdlcoobnpajagafbdjdfhhmjkchl |
| 简介 | Chrome Extension for Developers |
| 文件大小 | 423 KB |
| 安装次数 | 280 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2018-11-08 |
| 上架时间 | 2018-11-08 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Alexandru Berce |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"version": "0.0.3",
"manifest_version": 2,
"description": "__MSG_extDescription__",
"homepage_url": "http:\/\/extension.invobox.com",
"icons": {
"32": "src\/icons\/v1\/icon32.png",
"48": "src\/icons\/v1\/icon48.png",
"128": "src\/icons\/v1\/icon128.png"
},
"default_locale": "en",
"offline_enabled": false,
"background": {
"page": "src\/bg\/background.html",
"persistent": true
},
"browser_action": {
"default_icon": "src\/icons\/v1\/icon128.png",
"default_title": "__MSG_extName__",
"default_popup": "src\/browser_action\/browser_action.html"
},
"permissions": [
"idle",
"clipboardRead",
"clipboardWrite",
"contextMenus",
"storage"
],
"omnibox": {
"keyword": "dev"
}
} | |