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…

O que é Ads.txt finder?

Ads.txt finder é uma extensão do Chrome desenvolvida por benatiayaniv, e sua principal característica é "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…".

Baixar o arquivo CRX da Extensão Ads.txt finder

Baixe arquivos de extensão Ads.txt finder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
URL Oficial https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Descrição 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…
Tamanho do Arquivo 7.36 KB
Contagem de Instalações 312
Versão Atual 0.1
Última Atualização 2017-08-20
Data de Publicação 2017-08-20
Desenvolvedor benatiayaniv
Tipo de Pagamento free
Idiomas Suportados 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",
        "*:\/\/*\/*"
    ]
}