Simple Tab Timer
This extension creates a simple timer as a new tab.
什么是Simple Tab Timer?
Simple Tab Timer是由Apes in Capes开发的Chrome扩展程序,该扩展的主要功能是“This extension creates a simple timer as a new tab.”。
扩展截图
下载Simple Tab Timer扩展crx文件
下载Simple Tab Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you're looking for a simple tab timer, this is it. Click on the icon, select the time, press START and you're off to the races. Also, if you've found this extension helpful, tell your friends about it!
扩展基本信息
名称 | |
ID | kfnnebepkloaefoekfghncjhfklhoffh |
官方URL | https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh |
简介 | This extension creates a simple timer as a new tab. |
文件大小 | 111 KB |
安装次数 | 304 |
当前版本 | 1.3.1 |
更新时间 | 2022-03-25 |
上架时间 | 2019-10-11 |
评分 | 5.00/5 共2次评分 |
开发者 | Apes in Capes |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.apesincapes.com |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Timer", "description": "This extension creates a simple timer as a new tab.", "version": "1.3.1", "icons": { "512": "icon512.png", "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon512.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*", "https:\/\/www.google.ca\/*", "http:\/\/www.google.ca\/*", "https:\/\/www.google.co.uk\/*", "http:\/\/www.google.co.uk\/*", "https:\/\/www.google.se\/*", "http:\/\/www.google.se\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |