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…

¿Qué es Ads.txt finder?

Ads.txt finder es una extensión de Chrome desarrollada por benatiayaniv, y su función principal es "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…".

Descargar Archivo CRX de la Extensión Ads.txt finder

Descarga archivos de extensión Ads.txt finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
URL Oficial https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Descripción 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…
Tamaño del Archivo 7.36 KB
Cantidad de Instalaciones 312
Versión Actual 0.1
Última Actualización 2017-08-20
Fecha de Publicación 2017-08-20
Desarrollador benatiayaniv
Tipo de Pago free
Idiomas Soportados 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",
        "*:\/\/*\/*"
    ]
}