Twitch Peak
Keeps the current tab set to the largest stream for any given game on Twitch!
Что такое Twitch Peak?
Twitch Peak - это расширение Chrome, разработанное noahwillcrow, и его основная функция - "Keeps the current tab set to the largest stream for any given game on Twitch!".
Скачать файл CRX расширения Twitch Peak
Скачайте файлы расширений Twitch Peak в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Keep your eyes glued to only the top Twitch stream of any given game!
Instructions:
Just install this extension, click the icon in the Chrome menu, type in the name of your game, and click "Start Watching"!
Source code is available on GitHub!                     Основная информация о расширении
| Название |  | 
| ID | lmdldooiahghimedndlabgjfkddemjdj | 
| Официальный URL | https://chromewebstore.google.com/detail/twitch-peak/lmdldooiahghimedndlabgjfkddemjdj | 
| Описание | Keeps the current tab set to the largest stream for any given game on Twitch! | 
| Размер файла | 120 KB | 
| Количество установок | 23 | 
| Текущая Версия | 1.0.3 | 
| Последнее Обновление | 2017-07-25 | 
| Дата публикации | 2017-07-25 | 
| Разработчик | noahwillcrow | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://github.com/noahwillcrow/TwitchPeak | 
| Поддерживаемые языки | en-US | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Peak",
    "short_name": "TwitchPeak",
    "version": "1.0.3",
    "description": "Keeps the current tab set to the largest stream for any given game on Twitch!",
    "icons": {
        "32": "icon-32.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/api.twitch.tv\/kraken\/streams"
    ],
    "browser_action": {
        "default_title": "",
        "default_icon": "icon-32.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "background.js"
        ],
        "persistent": true
    }
} | |