Kantv Clean UI

Creates clean user interface for Kantv websites

Kantv Clean UI란 무엇입니까?

Kantv Clean UI은(는) joe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Creates clean user interface for Kantv websites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Kantv Clean UI 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}