Ads Tracker

See if you have ad banners in the current page!

Ads Tracker là gì?

Ads Tracker là một tiện ích mở rộng Chrome được phát triển bởi chuckk.media, và tính năng chính của nó là "See if you have ad banners in the current page! ".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ads Tracker

Tải xuống các tệp mở rộng Ads Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension will detect if the current website the user visiting has banner ads from various companies.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ads Tracker Ads Tracker
ID mhcfcphhgipcgdmdidoffhdmgbcnkamd
URL Chính Thức https://chrome.google.com/webstore/detail/ads-tracker/mhcfcphhgipcgdmdidoffhdmgbcnkamd
Mô tả See if you have ad banners in the current page!
Kích Thước Tệp 19.09 KB
Số Lần Cài Đặt 3,732
Phiên Bản Hiện Tại 1
Cập Nhật Lần Cuối 2022-12-01
Ngày Phát Hành 2022-12-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển chuckk.media
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://home.ceparateauab.com/
URL Trang Trợ Giúp https://home.ceparateauab.com/contact.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}