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…

Was ist Ads.txt finder?

Ads.txt finder ist eine Chrome-Erweiterung, die von benatiayaniv entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Ads.txt finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ads.txt finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
Offizielle URL https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Beschreibung 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…
Dateigröße 7.36 KB
Installationsanzahl 312
Aktuelle Version 0.1
Letztes Update 2017-08-20
Veröffentlichungsdatum 2017-08-20
Entwickler benatiayaniv
Zahlungsart free
Unterstützte Sprachen 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",
        "*:\/\/*\/*"
    ]
}