Comidoc
Want FREE online courses ? This extension lists daily coupons & free courses in realtime !
Hvad er Comidoc?
Comidoc er en Chrome-udvidelse udviklet af https://comidoc.net, og dens hovedfunktion er "Want FREE online courses ? This extension lists daily coupons & free courses in realtime !".
Udvidelsesskærmbilleder
Download Comidoc-udvidelses-CRX-fil
Download Comidoc-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
🤑 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
Grundlæggende oplysninger om udvidelsen
Navn | Comidoc |
ID | enggccnigdjpfjajmgicpdmbdfcecbfi |
Officiel URL | https://chromewebstore.google.com/detail/comidoc/enggccnigdjpfjajmgicpdmbdfcecbfi |
Beskrivelse | Want FREE online courses ? This extension lists daily coupons & free courses in realtime ! |
Filstørrelse | 366 KB |
Antal Installationer | 7,000 |
Nuværende Version | 0.43 |
Senest Opdateret | 2023-12-04 |
Udgivelsesdato | 2021-10-21 |
Bedømmelse | 4.40/5 Samlet 5 Bedømmelser |
Udvikler | https://comidoc.net |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://comidoc.net |
Hjælpeside-URL | https://comidoc.net/contact |
URL til Fortrolighedspolitik Side | https://comidoc.net/privacy |
Understøttede Sprog | 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\/*" ] } } |