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 là gì?

Ads.txt finder là một tiện ích mở rộng Chrome được phát triển bởi benatiayaniv, và tính năng chính của nó là "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…".

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

Tải xuống các tệp mở rộng Ads.txt finder 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

                        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                    

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

Tên Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
URL Chính Thức https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Mô tả 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…
Kích Thước Tệp 7.36 KB
Số Lần Cài Đặt 312
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-08-20
Ngày Phát Hành 2017-08-20
Nhà Phát Triển benatiayaniv
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        "*:\/\/*\/*"
    ]
}