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…
Co to jest Ads.txt finder?
Ads.txt finder to rozszerzenie Chrome opracowane przez benatiayaniv, a jego główną funkcją jest „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…”.
Pobierz plik CRX rozszerzenia Ads.txt finder
Pobierz pliki rozszerzeń Ads.txt finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | flegfjpoiblokjpmalnnjjjgadbjkcma |
Oficjalny URL | https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma |
Opis | 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… |
Rozmiar pliku | 7.36 KB |
Liczba instalacji | 312 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2017-08-20 |
Data Publikacji | 2017-08-20 |
Deweloper | benatiayaniv |
Typ Płatności | free |
Obsługiwane Języki | 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", "*:\/\/*\/*" ] } |