EasyClock
Adds a simple clock to web pages; access it by mousing over the bottom lefthand corner of your screen
Что такое EasyClock?
EasyClock - это расширение Chrome, разработанное Aaron Becker, и его основная функция - "Adds a simple clock to web pages; access it by mousing over the bottom lefthand corner of your screen".
Снимки экрана расширения
Скачать файл CRX расширения EasyClock
Скачайте файлы расширений EasyClock в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
EasyClock is a simple extension that adds a clock (shows on mouseover) in the bottom left-hand corner of your screen. But this clock has some features, including:
*Double click clock to change color
*Click clock to toggle seconds display
*Press L on keyboard to toggle keeping the clock onscreen forever Основная информация о расширении
| Название | |
| ID | aedanoabbbceoffbdkfdeccfpijfaoja |
| Официальный URL | https://chromewebstore.google.com/detail/easyclock/aedanoabbbceoffbdkfdeccfpijfaoja |
| Описание | Adds a simple clock to web pages; access it by mousing over the bottom lefthand corner of your screen |
| Размер файла | 13.16 KB |
| Количество установок | 85 |
| Текущая Версия | 1.1.5 |
| Последнее Обновление | 2016-09-11 |
| Дата публикации | 2016-09-10 |
| Разработчик | Aaron Becker |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "EasyClock",
"manifest_version": 2,
"version": "1.1.5",
"author": "Aaron Becker",
"description": "Adds a simple clock to web pages; access it by mousing over the bottom lefthand corner of your screen",
"icons": {
"128": "\/images\/icon.png"
},
"web_accessible_resources": [
"easyclock.js"
],
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
}
],
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"offline_enabled": true,
"short_name": "EasyClock"
} | |