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…

Wat is Ads.txt finder?

Ads.txt finder is een Chrome-extensie ontwikkeld door benatiayaniv, en de belangrijkste functie is "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…".

Download het CRX-bestand van de extensie Ads.txt finder

Download Ads.txt finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
Officiële URL https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Beschrijving 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…
Bestandsgrootte 7.36 KB
Aantal Installaties 312
Huidige Versie 0.1
Laatst Bijgewerkt 2017-08-20
Publicatiedatum 2017-08-20
Ontwikkelaar benatiayaniv
Betalingswijze free
Ondersteunde Talen 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",
        "*:\/\/*\/*"
    ]
}