Tea Timer
This extension is a simple timer (mostly used for tea infusion)
什么是Tea Timer?
Tea Timer是由daniele.armellini开发的Chrome扩展程序,该扩展的主要功能是“This extension is a simple timer (mostly used for tea infusion)”。
下载Tea Timer扩展crx文件
下载Tea Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | jpabmnfmofgmaabbhjifhnkjoaepmkpb |
| 官方URL | https://chromewebstore.google.com/detail/tea-timer/jpabmnfmofgmaabbhjifhnkjoaepmkpb |
| 简介 | This extension is a simple timer (mostly used for tea infusion) |
| 文件大小 | 36.87 KB |
| 安装次数 | 48 |
| 当前版本 | 1.0 |
| 更新时间 | 2017-11-01 |
| 上架时间 | 2017-11-01 |
| 评分 | 4.70/5 共10次评分 |
| 开发者 | daniele.armellini |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tea Timer",
"short_name": "Tea Timer",
"description": "This extension is a simple timer (mostly used for tea infusion)",
"version": "1.0",
"author": "Daniele Armellini",
"icons": {
"128": "tea-ended.png"
},
"browser_action": {
"default_icon": "tea-normal.png",
"default_popup": "popup.html",
"default_title": "Click here!"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"notifications",
"storage"
]
} | |