Simple Tab Timer
This extension creates a simple timer as a new tab.
Что такое Simple Tab Timer?
Simple Tab Timer - это расширение Chrome, разработанное Apes in Capes, и его основная функция - "This extension creates a simple timer as a new tab.".
Снимки экрана расширения
Скачать файл CRX расширения Simple Tab Timer
Скачайте файлы расширений 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'" } |