TheNextEpisode

TheNextEpisode is your guide for whatever TV series you're watching online.

Что такое TheNextEpisode?

TheNextEpisode - это расширение Chrome, разработанное benjyblack, и его основная функция - "TheNextEpisode is your guide for whatever TV series you're watching online.".

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

screenshot

Скачать файл CRX расширения TheNextEpisode

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

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

                        TheNextEpisode is an interactive guide for whatever (public domain, of course) TV series you are watching on 1channel.ch. 

After you choose an episode on 1channel, the guide will gather information on every other episode available for that series. When you click TheNextEpisode button on your browser, you will be presented with a list, sorted by view count, of all the links available for the next episode. You can also navigate to any other episode from the guide.                    

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

Название TheNextEpisode TheNextEpisode
ID kjelkffopjkchfimcgjcolcdhjhoenme
Официальный URL https://chrome.google.com/webstore/detail/thenextepisode/kjelkffopjkchfimcgjcolcdhjhoenme
Описание TheNextEpisode is your guide for whatever TV series you're watching online.
Размер файла 719 KB
Количество установок 123
Текущая Версия 0.5
Последнее Обновление 2013-04-07
Дата публикации 2013-04-07
Рейтинг 5.00/5 Всего 3 оценок
Разработчик benjyblack
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "browser_action": {
        "default_icon": "fastforward.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "img\/loader.gif"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "TheNextEpisode is your guide for whatever TV series you're watching online.",
    "background": {
        "page": "background.html"
    },
    "name": "TheNextEpisode",
    "permissions": [
        "http:\/\/*.1channel.ch\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.1channel.ch\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/1channel.js"
            ],
            "img": [
                "img\/loader.gif"
            ],
            "run_at": "document_start",
            "css": [
                "css\/1channel.css"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "0.5"
}