Hello Tab
Hello Tab replaces your new tab page with random thoughts from others
Что такое Hello Tab?
Hello Tab - это расширение Chrome, разработанное https://hellotab.com, и его основная функция - "Hello Tab replaces your new tab page with random thoughts from others".
Снимки экрана расширения
Скачать файл CRX расширения Hello Tab
Скачайте файлы расширений Hello Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Use this chrome extension to anonymously share a thought or simply get inspired by others thoughts every time you open a new tab (cmd+T).
Share whatever is on your mind, as long as it's less than 200 characters.
Want to use more than one new-tab-extension at once? Check out "Cycle Tab" (http://cycletab.rocks) on the chrome store! Основная информация о расширении
| Название | |
| ID | nimdmcfjenibfldkceoegchnicmfagfb |
| Официальный URL | https://chromewebstore.google.com/detail/hello-tab/nimdmcfjenibfldkceoegchnicmfagfb |
| Описание | Hello Tab replaces your new tab page with random thoughts from others |
| Размер файла | 124 KB |
| Количество установок | 434 |
| Текущая Версия | 1.3.6 |
| Последнее Обновление | 2015-09-27 |
| Дата публикации | 2015-09-27 |
| Рейтинг | 4.60/5 Всего 20 оценок |
| Разработчик | https://hellotab.com |
| Тип оплаты | free |
| Официальный сайт расширения | https://hellotab.com |
| URL страницы помощи | https://hellotab.com#faq |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hello Tab",
"description": "Hello Tab replaces your new tab page with random thoughts from others",
"version": "1.3.6",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon128.png",
"128": "images\/icon128.png"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/hellotab.com\/*"
],
"js": [
"js\/content_script.js"
]
}
],
"web_accessible_resources": [
"newtab.html"
],
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"permissions": [
"https:\/\/hellotab.com\/",
"storage"
]
} | |