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…
Vad är Ads.txt finder?
Ads.txt finder är en Chrome-tillägg utvecklad av benatiayaniv, och dess huvudfunktion är "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…".
Ladda ner Ads.txt finder-förlängningens CRX-fil
Ladda ner Ads.txt finder-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
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äggande Information om Tillägg
Namn | ![]() |
ID | flegfjpoiblokjpmalnnjjjgadbjkcma |
Officiell webbadress | https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma |
Beskrivning | 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… |
Filstorlek | 7.36 KB |
Antal Installationer | 312 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2017-08-20 |
Publiceringsdatum | 2017-08-20 |
Utvecklare | benatiayaniv |
Betalningssätt | free |
Stödda Språk | 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", "*:\/\/*\/*" ] } |