WUTemp
This extension shows the temperature of a Weather Underground station
Что такое WUTemp?
WUTemp - это расширение Chrome, разработанное Engineered Musings, и его основная функция - "This extension shows the temperature of a Weather Underground station".
Скачать файл CRX расширения WUTemp
Скачайте файлы расширений WUTemp в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension show the current temperature of a Weather Underground station as an icon next to the Omnibar. Основная информация о расширении
| Название | |
| ID | lepomagompeaddljdclflabddeoagdfc |
| Официальный URL | https://chromewebstore.google.com/detail/wutemp/lepomagompeaddljdclflabddeoagdfc |
| Описание | This extension shows the temperature of a Weather Underground station |
| Размер файла | 19.71 KB |
| Количество установок | 48 |
| Текущая Версия | 1.5 |
| Последнее Обновление | 2016-04-07 |
| Дата публикации | 2016-04-07 |
| Рейтинг | 3.00/5 Всего 4 оценок |
| Разработчик | Engineered Musings |
| Тип оплаты | free |
| Официальный сайт расширения | http://engineeredmusings.com |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "WUTemp",
"description": "This extension shows the temperature of a Weather Underground station",
"version": "1.5",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": [],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"http:\/\/stationdata.wunderground.com\/",
"storage"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |