Simple Tab Timer
This extension creates a simple timer as a new tab.
Qu'est-ce que Simple Tab Timer ?
Simple Tab Timer est une extension Chrome développée par Apes in Capes, et sa fonction principale est "This extension creates a simple timer as a new tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple Tab Timer
Téléchargez les fichiers d'extension Simple Tab Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | |
ID | kfnnebepkloaefoekfghncjhfklhoffh |
URL Officiel | https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh |
Description | This extension creates a simple timer as a new tab. |
Taille du Fichier | 111 KB |
Nombre d'Installations | 304 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2022-03-25 |
Date de Publication | 2019-10-11 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Apes in Capes |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.apesincapes.com |
Langues Prises en Charge | 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'" } |