Comidoc
Want FREE online courses ? This extension lists daily coupons & free courses in realtime !
Comidoc là gì?
Comidoc là một tiện ích mở rộng Chrome được phát triển bởi https://comidoc.net, và tính năng chính của nó là "Want FREE online courses ? This extension lists daily coupons & free courses in realtime !".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Comidoc
Tải xuống các tệp mở rộng Comidoc dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
🤑 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Comidoc |
ID | enggccnigdjpfjajmgicpdmbdfcecbfi |
URL Chính Thức | https://chromewebstore.google.com/detail/comidoc/enggccnigdjpfjajmgicpdmbdfcecbfi |
Mô tả | Want FREE online courses ? This extension lists daily coupons & free courses in realtime ! |
Kích Thước Tệp | 366 KB |
Số Lần Cài Đặt | 7,000 |
Phiên Bản Hiện Tại | 0.43 |
Cập Nhật Lần Cuối | 2023-12-04 |
Ngày Phát Hành | 2021-10-21 |
Đánh Giá | 4.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://comidoc.net |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://comidoc.net |
URL Trang Trợ Giúp | https://comidoc.net/contact |
URL Trang Chính Sách Bảo Mật | https://comidoc.net/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |