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…
什麼是Ads.txt finder?
Ads.txt finder是由benatiayaniv開發的Chrome擴展程式,該擴展的主要功能是“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…”。
下載Ads.txt finder擴展crx文件
下載Ads.txt finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | ![]() |
ID | flegfjpoiblokjpmalnnjjjgadbjkcma |
官方網址 | https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma |
簡介 | 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… |
檔案大小 | 7.36 KB |
安裝次數 | 312 |
目前版本 | 0.1 |
更新時間 | 2017-08-20 |
上架時間 | 2017-08-20 |
開發者 | benatiayaniv |
付費類型 | free |
支援的語言 | 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", "*:\/\/*\/*" ] } |