Ads.txt finder
the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site…
Hvad er Ads.txt finder?
Ads.txt finder er en Chrome-udvidelse udviklet af benatiayaniv, og dens hovedfunktion er "the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site…".
Download Ads.txt finder-udvidelses-CRX-fil
Download Ads.txt finder-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
the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site is using ads.txt or not. clicking on the icon will show the ads.txt file. this is for advertiser adOpps team to check if their seller is actually working with the site
Grundlæggende oplysninger om udvidelsen
Navn | ![]() |
ID | flegfjpoiblokjpmalnnjjjgadbjkcma |
Officiel URL | https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma |
Beskrivelse | the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site… |
Filstørrelse | 7.36 KB |
Antal Installationer | 312 |
Nuværende Version | 0.1 |
Senest Opdateret | 2017-08-20 |
Udgivelsesdato | 2017-08-20 |
Udvikler | benatiayaniv |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ads.txt finder", "version": "0.1", "background": { "scripts": [ "bgproc.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "popup.js" ] } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "background", "tabs", "https:\/\/ajax.googleapis.com\/", "webNavigation", "*:\/\/*\/*" ] } |