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”。
扩展截图
下载Kantv Clean UI扩展crx文件
下载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
扩展基本信息
名称 | |
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" ] } |