Comidoc
Want FREE online courses ? This extension lists daily coupons & free courses in realtime !
Comidocคืออะไร?
Comidoc เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://comidoc.net และคุณลักษณะหลักของมันคือ "Want FREE online courses ? This extension lists daily coupons & free courses in realtime !"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comidoc
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
]
}
} | |