{"id":30280122,"url":"https://github.com/hillev/emag-remove-promoted","last_synced_at":"2026-05-19T05:36:23.543Z","repository":{"id":306382049,"uuid":"1025982506","full_name":"Hillev/emag-remove-promoted","owner":"Hillev","description":"Remove promoted products from eMag across all domains","archived":false,"fork":false,"pushed_at":"2025-07-25T07:03:50.000Z","size":939,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-25T11:52:51.882Z","etag":null,"topics":["ad-blocker","browser-extension","emag","javascript","userscript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hillev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-25T06:00:03.000Z","updated_at":"2025-07-25T08:10:36.000Z","dependencies_parsed_at":"2025-07-25T11:52:59.792Z","dependency_job_id":"a8b112eb-c135-4919-929e-42841147df04","html_url":"https://github.com/Hillev/emag-remove-promoted","commit_stats":null,"previous_names":["hillev/emag-promoted-removal"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Hillev/emag-remove-promoted","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hillev%2Femag-remove-promoted","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hillev%2Femag-remove-promoted/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hillev%2Femag-remove-promoted/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hillev%2Femag-remove-promoted/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hillev","download_url":"https://codeload.github.com/Hillev/emag-remove-promoted/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hillev%2Femag-remove-promoted/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270728045,"owners_count":24635132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ad-blocker","browser-extension","emag","javascript","userscript"],"created_at":"2025-08-16T15:01:02.176Z","updated_at":"2025-10-26T21:17:30.385Z","avatar_url":"https://github.com/Hillev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eMag Promoted Products Remover\n\nA userscript that automatically removes promoted/sponsored products from eMag search results and product listings across all eMag domains.\n\n## 🌍 Supported Sites\n\n- eMag Romania (emag.ro)\n- eMag Bulgaria (emag.bg) \n- eMag Hungary (emag.hu)\n\n## ✨ Features\n\n- **Multilingual Support**: Detects promoted products in Romanian, Bulgarian, Hungarian, and English\n- **Real-time Filtering**: Automatically removes promoted products as they load\n- **Performance Optimized**: Uses debouncing and smart DOM observation\n- **Error Resistant**: Continues working even if eMag changes their layout\n\n## 🚀 Installation\n\n### Prerequisites\nYou need a userscript manager extension:\n- **Recommended**: [Violentmonkey](https://violentmonkey.github.io/) (Firefox, Edge)\n- **Alternative**: [Tampermonkey](https://www.tampermonkey.net/) (Chrome, Firefox, Safari, Edge)\n- **Firefox**: [Greasemonkey](https://addons.mozilla.org/firefox/addon/greasemonkey/)\n\n### Install the Script\n1. Install a userscript manager (see above)\n2. Click this link to install: **[Install eMag remove promoted](https://raw.githubusercontent.com/Hillev/emag-remove-promoted/main/emag-remove-promoted.user.js)**\n3. Your userscript manager will open - click \"Install\"\n4. Visit any eMag site and the script will automatically start working\n\n### Manual Installation\n1. Copy the contents of `emag-remove-promoted.user.js`\n2. Open your userscript manager\n3. Create a new script and paste the code\n4. Save and enable the script\n\n## 🖼️ Screenshots\n\n### Before\n![Before - with promoted products](screenshots/before.png)\n\n### After  \n![After - promoted products removed](screenshots/after.png)\n\n### Log \n![Log - promoted products removed](screenshots/log.png)\n\n## 🔧 How It Works\n\nThe script:\n1. Monitors the page for product cards (`.card-v2`)\n2. Checks each card for promotion badges (`.card-v2-badge-cmp`)\n3. Removes cards containing promotional keywords in any supported language:\n   - **Romanian**: promovat, promotat, sponsorizat\n   - **Bulgarian**: промотиран, спонсориран, реклама\n   - **Hungarian**: támogatott, szponzorált, hirdetés\n   - **English**: promoted, sponsored, advertisement\n\n## 🛠️ Development\n\n### Local Testing\n1. Clone this repository\n2. Install the script in your userscript manager\n3. Make changes to the `.user.js` file\n4. Reload eMag pages to test\n\n### Contributing\n1. Fork this repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📝 Changelog\n\n### v2.0\n- Added multilingual support for all eMag domains\n- Improved performance with smart DOM observation\n- Added error handling and logging\n- Better keyword detection\n\n### v1.0\n- Initial release for eMag Romania\n- Basic promoted product removal\n\n## 🐛 Issues \u0026 Support\n\nFound a bug or have a feature request? \n\n- [Open an issue](https://github.com/Hillev/emag-remove-promoted/issues)\n- Check [existing issues](https://github.com/Hillev/emag-remove-promoted/issues) first\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## ⚠️ Disclaimer\n\nThis script is for educational purposes and personal use. It modifies the appearance of eMag websites in your browser only. Use responsibly and in accordance with eMag's terms of service.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhillev%2Femag-remove-promoted","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhillev%2Femag-remove-promoted","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhillev%2Femag-remove-promoted/lists"}