Comidoc
Want FREE online courses ? This extension lists daily coupons & free courses in realtime !
什么是Comidoc?
Comidoc是由https://comidoc.net开发的Chrome扩展程序,该扩展的主要功能是“Want FREE online courses ? This extension lists daily coupons & free courses in realtime !”。
扩展截图
下载Comidoc扩展crx文件
下载Comidoc扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
🤑 List daily free online courses
🤖 Check if a valid coupon exists in our database when you browse courses pages and show a notification popup if available
We only support Udemy at this time 扩展基本信息
| 名称 | |
| ID | enggccnigdjpfjajmgicpdmbdfcecbfi |
| 官方URL | https://chromewebstore.google.com/detail/comidoc/enggccnigdjpfjajmgicpdmbdfcecbfi |
| 简介 | Want FREE online courses ? This extension lists daily coupons & free courses in realtime ! |
| 文件大小 | 366 KB |
| 安装次数 | 7,000 |
| 当前版本 | 0.43 |
| 更新时间 | 2023-12-04 |
| 上架时间 | 2021-10-21 |
| 评分 | 4.40/5 共5次评分 |
| 开发者 | https://comidoc.net |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://comidoc.net |
| 帮助页面URL | https://comidoc.net/contact |
| 隐私政策页面URL | https://comidoc.net/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Comidoc",
"description": "Want FREE online courses ? This extension lists daily coupons & free courses in realtime !",
"manifest_version": 2,
"version": "0.43",
"icons": {
"32": "icon_32.png",
"128": "icon_128.png",
"256": "icon_256.png",
"512": "icon_512.png",
"1024": "icon_1024.png"
},
"browser_action": {
"default_icon": {
"32": "icon_32.png",
"128": "icon_128.png",
"256": "icon_256.png",
"512": "icon_512.png",
"1024": "icon_1024.png"
},
"default_popup": "popup.html",
"default_title": "When you browse courses on the Udemy website, a notification will be show if we have a valid coupon"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/www.udemy.com\/*"
],
"js": [
"udemy.js"
],
"css": [],
"run_at": "document_end"
}
],
"permissions": [
"https:\/\/*.comidoc.net\/*",
"notifications",
"cookies",
"storage",
"contextMenus"
],
"externally_connectable": {
"matches": [
"https:\/\/*.comidoc.net\/*"
]
}
} | |