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…

Apa itu Ads.txt finder?

Ads.txt finder adalah ekstensi Chrome yang dikembangkan oleh benatiayaniv, dan fitur utamanya adalah "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…".

Unduh Berkas CRX Ekstensi Ads.txt finder

Unduh file ekstensi Ads.txt finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
URL Resmi https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Deskripsi 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…
Ukuran File 7.36 KB
Jumlah Instalasi 312
Versi Saat Ini 0.1
Terakhir Diperbarui 2017-08-20
Tanggal Publikasi 2017-08-20
Pengembang benatiayaniv
Tipe Pembayaran free
Bahasa yang Didukung 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",
        "*:\/\/*\/*"
    ]
}