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 |
官方URL | 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", "*:\/\/*\/*" ] } |