Ads Tracker
See if you have ad banners in the current page!
什么是Ads Tracker?
Ads Tracker是由chuckk.media开发的Chrome扩展程序,该扩展的主要功能是“See if you have ad banners in the current page! ”。
扩展截图
下载Ads Tracker扩展crx文件
下载Ads Tracker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will detect if the current website the user visiting has banner ads from various companies.
扩展基本信息
名称 | |
ID | mhcfcphhgipcgdmdidoffhdmgbcnkamd |
官方URL | https://chrome.google.com/webstore/detail/ads-tracker/mhcfcphhgipcgdmdidoffhdmgbcnkamd |
简介 | See if you have ad banners in the current page! |
文件大小 | 19.09 KB |
安装次数 | 3,732 |
当前版本 | 1 |
更新时间 | 2022-12-01 |
上架时间 | 2022-12-01 |
评分 | 5.00/5 共1次评分 |
开发者 | chuckk.media |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://home.ceparateauab.com/ |
帮助页面URL | https://home.ceparateauab.com/contact.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Ads Tracker", "default_popup": "popup.html" }, "description": "See if you have ad banners in the current page! ", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Ads Tracker", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |