Kantv Clean UI

Creates clean user interface for Kantv websites

Что такое Kantv Clean UI?

Kantv Clean UI - это расширение Chrome, разработанное joe, и его основная функция - "Creates clean user interface for Kantv websites".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        18/05/2020 Kantv has changed your guest ID for a few days, which totally broke the 追剧列表. I didn't have free time to fix this while watching TVB shows on wotvb.com. I will try to fix that guest ID problem, as well as adding some new functionalities soon :)

Warning: This extension is NOT made by KanTV. I shared it here, so that my friends can access it easily. 

Last update took more than 2 weeks to go online in chrome web store. Please be patient. During this period, kantv may change its website, my code may not work. If so, just wait for my next update.

For the latest update, please check out chrome web store. Or download the extension zip file from the link below. Then open Chrome browser -> click on the three dots (vertical ellipsis) -> More tools -> click Extensions. Then drag and drop the zip file to Extensions page to install it.

https://www.apricode.com.au/downloads/?kantv


KanTV is a good website to watch TV dramas and movies online for free. But it shows Ads everywhere. This extension is used to clean them up. To access the Ads code, this extension requires to intercept the javascript requests from KanTV server. 

Version 
1.2.0 update 

Update Details:
- New Ads blocking for recent kantv website changes
- New extension popup. open it by clicking the extension icon when on a kantv page
- In the popup, it contains two parts, the first one is a list of TV shows that you chosen to following. They will be checked for update automatically. You will be inform when new episode comes out. Unwatched TV shows will be informed by extension badge, a yellow star in the list. For new update shows, they will also be shown in browser notification, which requires at least one kantv tab open in the browser. Notification permission will be requested when you close this modal
- The other part in the popup, it's the bookmarklets. One is used to replacing visitor ID on mobile using your PC's visitor ID. so that you can share the same watching history on both PC and mobile. The other is used to removing the webchat subscription on mobile. It needs to run everytime when watching videos.
- On a watching page, added 追剧 (trigger episode update check) and 选集 (list of all episodes) to the video player
- Turn off 弹幕, hide the 弹幕 bar
- New extension icons
- And other minor enhancements

Short Details:
remove new Ads, add extension popup (access to 追剧列表 and bookmarklets), new video player functions of 追剧, 选集, and remove 弹幕, bookmarklets for mobile (one for remove wechat subscription, the other for PC and mobile to share the same watching history). Checkout the screenshots for this update in Chrome Web Store.

Notice:
- May need to refresh your old Kantv tabs in the browser
- Website permission is required to show notification for new episodes
- Extension permission is required to add bookmarks in the browser                    

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

Название Kantv Clean UI Kantv Clean UI
ID henodoncahjomcacgieadnkoffjalnab
Официальный URL https://chromewebstore.google.com/detail/kantv-clean-ui/henodoncahjomcacgieadnkoffjalnab
Описание Creates clean user interface for Kantv websites
Размер файла 135 KB
Количество установок 384
Текущая Версия 1.2.0
Последнее Обновление 2020-05-18
Дата публикации 2020-05-17
Рейтинг 4.86/5 Всего 7 оценок
Разработчик joe
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.apricode.com.au/projects/?kantv
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kantv Clean UI",
    "description": "Creates clean user interface for Kantv websites",
    "version": "1.2.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon_bw.png",
        "default_title": "Kantv Clean UI",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "dexie.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "noty.min.js",
                "content.js"
            ],
            "css": [
                "content.css",
                "noty.css"
            ],
            "matches": [
                "*:\/\/*.wekan.tv\/*",
                "*:\/\/*.kantv6.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.wekan.tv\/*",
        "*:\/\/*.kantv6.com\/*",
        "*:\/\/asset.bixjf.com\/*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "optional_permissions": [
        "bookmarks"
    ],
    "web_accessible_resources": [
        "jquery.min.js",
        "icon.png"
    ]
}