Udemy Plus
Udemy Plus adds new features on top of your favorite Udemy.
什么是Udemy Plus?
Udemy Plus是由TulparDev开发的Chrome扩展程序,该扩展的主要功能是“Udemy Plus adds new features on top of your favorite Udemy.”。
扩展截图
下载Udemy Plus扩展crx文件
下载Udemy Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features: - More video rates - Mark course section completed/incompleted - Picture in Picture 🔥🔥🔥 - Ctrl + Right/Left arrows - to open next/previous video See upcoming features: https://github.com/sagynbek/udemy-plus
扩展基本信息
名称 | Udemy Plus |
ID | llkblgkohonjafpigfbbamilgadmcilg |
官方URL | https://chromewebstore.google.com/detail/udemy-plus/llkblgkohonjafpigfbbamilgadmcilg |
简介 | Udemy Plus adds new features on top of your favorite Udemy. |
文件大小 | 22.14 KB |
安装次数 | 2,542 |
当前版本 | 1.1.1 |
更新时间 | 2022-07-31 |
上架时间 | 2020-08-08 |
评分 | 4.31/5 共16次评分 |
开发者 | TulparDev |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | de,en,fr,tr,es,pt-PT,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extension_name__", "version": "1.1.1", "author": "Sagynbek Kenzhebaev", "description": "__MSG_extension_description__", "default_locale": "en", "action": { "default_title": "Udemy Plus", "default_popup": "ui\/popup\/index.html" }, "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.udemy.com\/*" ], "js": [ "inject\/index.js" ], "css": [ "ui\/page.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "ui\/themes\/dark.css", "ui\/themes\/default.css", "icons\/pip-icon.png" ], "matches": [ "https:\/\/*.udemy.com\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.udemy.com\/*" ] } |