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…

Что такое Ads.txt finder?

Ads.txt finder - это расширение Chrome, разработанное benatiayaniv, и его основная функция - "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…".

Скачать файл CRX расширения Ads.txt finder

Скачайте файлы расширений Ads.txt finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Ads.txt finder Ads.txt finder
ID flegfjpoiblokjpmalnnjjjgadbjkcma
Официальный URL https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma
Описание 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…
Размер файла 7.36 KB
Количество установок 312
Текущая Версия 0.1
Последнее Обновление 2017-08-20
Дата публикации 2017-08-20
Разработчик benatiayaniv
Тип оплаты free
Поддерживаемые языки 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",
        "*:\/\/*\/*"
    ]
}