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 |
| 官方網址 | 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\/*"
]
}
} | |