Netflix Continue Watching

Moves the 'Continue Watching' section to the top of your Netflix page!

Что такое Netflix Continue Watching?

Netflix Continue Watching - это расширение Chrome, разработанное michaelcook.tech, и его основная функция - "Moves the 'Continue Watching' section to the top of your Netflix page!".

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

screenshot

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

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

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

                        Moves the 'Continue Watching' section to the top of your Netflix page!                    

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

Название Netflix Continue Watching Netflix Continue Watching
ID oaebpedoiblbapimeeeclbapilnmlpgm
Официальный URL https://chrome.google.com/webstore/detail/netflix-continue-watching/oaebpedoiblbapimeeeclbapilnmlpgm
Описание Moves the 'Continue Watching' section to the top of your Netflix page!
Размер файла 133 KB
Количество установок 890
Текущая Версия 1.0.4
Последнее Обновление 2016-10-06
Дата публикации 2016-10-06
Рейтинг 2.80/5 Всего 10 оценок
Разработчик michaelcook.tech
Тип оплаты free
Официальный сайт расширения http://yays.co
Поддерживаемые языки en-GB
manifest.json
{
    "name": "Netflix Continue Watching",
    "version": "1.0.4",
    "description": "Moves the 'Continue Watching' section to the top of your Netflix page!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/browse"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}