Content-aware Ad Blocker
Experimental new ad blocker using machine learning to identify unwanted ads on pages and remove them. Use at your own risk!
Hvad er Content-aware Ad Blocker?
Content-aware Ad Blocker er en Chrome-udvidelse udviklet af Tom W Yedwab, og dens hovedfunktion er "Experimental new ad blocker using machine learning to identify unwanted ads on pages and remove them. Use at your own risk!".
Udvidelsesskærmbilleder
Download Content-aware Ad Blocker-udvidelses-CRX-fil
Download Content-aware Ad Blocker-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
Improved ad blocker using cutting-edge machine learning techniques to identify advertising and user tracking on websites and prevent the unwanted content from loading. Still in early testing - use at your own risk!
Grundlæggende oplysninger om udvidelsen
Navn | Content-aware Ad Blocker |
ID | mjjigiphiihnhaiemofpiihnakifcjel |
Officiel URL | https://chromewebstore.google.com/detail/content-aware-ad-blocker/mjjigiphiihnhaiemofpiihnakifcjel |
Beskrivelse | Experimental new ad blocker using machine learning to identify unwanted ads on pages and remove them. Use at your own risk! |
Filstørrelse | 865 KB |
Antal Installationer | 536 |
Nuværende Version | 0.2 |
Senest Opdateret | 2016-12-07 |
Udgivelsesdato | 2016-12-06 |
Bedømmelse | 4.36/5 Samlet 11 Bedømmelser |
Udvikler | Tom W Yedwab |
Betalingsmetode | free |
Udvidelseswebsted | https://samuelhkahn.github.io/capstone_page/ |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content-aware Ad Blocker", "description": "Experimental new ad blocker using machine learning to identify unwanted ads on pages and remove them. Use at your own risk!", "version": "0.2", "icons": { "48": "icons\/exticon.png", "96": "icons\/exticon96.png", "128": "icons\/exticon128.png" }, "browser_action": { "default_icon": "icons\/exticon.png", "default_popup": "src\/popup.html" }, "background": { "scripts": [ "src\/parse_filters.js", "src\/final_model.js", "src\/url_model.js", "src\/background.js" ], "persistent": true }, "permissions": [ "storage", "unlimitedStorage", "tabs", "webRequest", "webRequestBlocking", "*:\/\/*\/*" ], "web_accessible_resources": [] } |