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 |
Eメール | [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'" } |