Simple Tab Timer
This extension creates a simple timer as a new tab.
Co je Simple Tab Timer?
Simple Tab Timer je rozšíření Chrome vyvinuté Apes in Capes, a jeho hlavní funkcí je „This extension creates a simple timer as a new tab.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Simple Tab Timer
Stáhněte si soubory rozšíření Simple Tab Timer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | |
ID | kfnnebepkloaefoekfghncjhfklhoffh |
Oficiální URL | https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh |
Popis | This extension creates a simple timer as a new tab. |
Velikost souboru | 111 KB |
Počet instalací | 304 |
Aktuální Verze | 1.3.1 |
Poslední Aktualizace | 2022-03-25 |
Datum Vydání | 2019-10-11 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Apes in Capes |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.apesincapes.com |
Podporované Jazyky | 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'" } |