To the Comments!
View the reddit or Hacker News comments for a given page
Что такое To the Comments!?
To the Comments! - это расширение Chrome, разработанное https://burba.io, и его основная функция - "View the reddit or Hacker News comments for a given page".
Снимки экрана расширения
Скачать файл CRX расширения To the Comments!
Скачайте файлы расширений To the Comments! в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
View the Hacker News and Reddit comments for your current page. Основная информация о расширении
| Название | |
| ID | ceghmjigckmapkbgccgehlipbkdhglab |
| Официальный URL | https://chromewebstore.google.com/detail/to-the-comments/ceghmjigckmapkbgccgehlipbkdhglab |
| Описание | View the reddit or Hacker News comments for a given page |
| Размер файла | 20.92 KB |
| Количество установок | 16 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2017-04-04 |
| Дата публикации | 2017-04-04 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | https://burba.io |
| Тип оплаты | free |
| Официальный сайт расширения | http://tothecomments.burba.io |
| URL страницы помощи | http://tothecomments.burba.io |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "To the Comments!",
"description": "View the reddit or Hacker News comments for a given page",
"version": "1.0.1",
"icons": {
"128": "src\/images\/comment.png"
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "src\/images\/comment.png",
"default_title": "To the Comments!",
"default_popup": "src\/popup.html"
},
"background": {
"scripts": [
"src\/js\/thru.js",
"src\/js\/get-active-tab.js",
"src\/js\/get-active-url.js",
"src\/js\/get-comments.js",
"src\/js\/background.js"
],
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Show comments for current page"
},
"open-top-reddit-link": {
"suggested_key": {
"default": "Alt+R"
},
"description": "Open the top reddit link for this page"
},
"open-top-hn-link": {
"suggested_key": {
"default": "Alt+H"
},
"description": "Open the top Hacker News link for this page"
}
}
} | |