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 |
官方網址 | 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'" } |