Toggle Comments for reddit

Show and hide comments directly on the home page of reddit!

Что такое Toggle Comments for reddit?

Toggle Comments for reddit - это расширение Chrome, разработанное eet6646, и его основная функция - "Show and hide comments directly on the home page of reddit!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Toggle Comments for reddit

Скачайте файлы расширений Toggle Comments for reddit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Do you find it annoying to open a new tab/page to view user comments?

This extension allows you to show entire comment blocks from a post, on the same page. No need to open a new tab or even leave the page! View the post's comments on the same page, right under the post's title.

No new tabs, no new pages, saving you precious reddit'ing time.

Open Source!
============
http://goo.gl/HuNxI0                    

Основная информация о расширении

Название Toggle Comments for reddit Toggle Comments for reddit
ID ooghofdlbfogobekpijdpogbdjilnmoh
Официальный URL https://chromewebstore.google.com/detail/toggle-comments-for-reddi/ooghofdlbfogobekpijdpogbdjilnmoh
Описание Show and hide comments directly on the home page of reddit!
Размер файла 90.52 KB
Количество установок 39
Текущая Версия 0.0.5
Последнее Обновление 2017-04-21
Дата публикации 2017-04-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик eet6646
Тип оплаты free
Официальный сайт расширения https://github.com/eet6646/Toggle-Comments-Reddit
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Toggle Comments for reddit",
    "short_name": "TCr",
    "description": "Show and hide comments directly on the home page of reddit!",
    "version": "0.0.5",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "togglecomments.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-3.2.1.min.map"
    ],
    "permissions": [
        "*:\/\/www.reddit.com\/*"
    ]
}