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…
What is Ads.txt finder?
Ads.txt finder is a Chrome extension developed by benatiayaniv, and its main feature is "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 Extension CRX File
Download Ads.txt finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | ![]() |
ID | flegfjpoiblokjpmalnnjjjgadbjkcma |
Official URL | https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma |
Description | 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… |
File Size | 7.36 KB |
Installation Count | 312 |
Current Version | 0.1 |
Last Updated | 2017-08-20 |
Publish Date | 2017-08-20 |
Developer | benatiayaniv |
Payment Type | free |
Supported Languages | 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", "*:\/\/*\/*" ] } |