Comidoc
Want FREE online courses ? This extension lists daily coupons & free courses in realtime !
Vad är Comidoc?
Comidoc är en Chrome-tillägg utvecklad av https://comidoc.net, och dess huvudfunktion är "Want FREE online courses ? This extension lists daily coupons & free courses in realtime !".
Tilläggsskärmbilder
Ladda ner Comidoc-förlängningens CRX-fil
Ladda ner Comidoc-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
🤑 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äggande Information om Tillägg
| Namn | |
| ID | enggccnigdjpfjajmgicpdmbdfcecbfi |
| Officiell webbadress | https://chromewebstore.google.com/detail/comidoc/enggccnigdjpfjajmgicpdmbdfcecbfi |
| Beskrivning | Want FREE online courses ? This extension lists daily coupons & free courses in realtime ! |
| Filstorlek | 366 KB |
| Antal Installationer | 7,000 |
| Aktuell Version | 0.43 |
| Senast Uppdaterad | 2023-12-04 |
| Publiceringsdatum | 2021-10-21 |
| Betyg | 4.40/5 Totalt 5 Betyg |
| Utvecklare | https://comidoc.net |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://comidoc.net |
| Hjälpsida URL | https://comidoc.net/contact |
| URL till Sekretesspolicy Sidan | https://comidoc.net/privacy |
| Stödda Språk | 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\/*"
]
}
} | |