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'est-ce que Ads.txt finder ?

Ads.txt finder est une extension Chrome développée par benatiayaniv, et sa fonction principale est "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élécharger le fichier CRX de l'extension Ads.txt finder

Téléchargez les fichiers d'extension Ads.txt finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
URL Officiel https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Description 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…
Taille du Fichier 7.36 KB
Nombre d'Installations 312
Version Actuelle 0.1
Dernière Mise à Jour 2017-08-20
Date de Publication 2017-08-20
Développeur benatiayaniv
Type de Paiement free
Langues Prises en Charge 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",
        "*:\/\/*\/*"
    ]
}