Site Audit Extension
Extension for site Audit.
Что такое Site Audit Extension?
Site Audit Extension - это расширение Chrome, разработанное Adpushup, и его основная функция - "Extension for site Audit.".
Снимки экрана расширения
Скачать файл CRX расширения Site Audit Extension
Скачайте файлы расширений Site Audit Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is for internal usage of the company, it helps the operations team to analyse the setting on the publisher's website and get page configuration which can be fetched manually. It helps operations team for extracting the information automatically than doing it manually. Test this on https://www.javatpoint.com/math without any adblockers
Основная информация о расширении
Название | Site Audit Extension |
ID | komkgjgoffjlpldfpdloocnmphefkfji |
Официальный URL | https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji |
Описание | Extension for site Audit. |
Размер файла | 76.67 KB |
Количество установок | 180 |
Текущая Версия | 1.2 |
Последнее Обновление | 2022-09-02 |
Дата публикации | 2022-08-31 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Adpushup |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Site Audit Extension", "description": "Extension for site Audit.", "version": "1.2", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_icon": { "32": "icons\/32x32.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_end", "js": [ "dist\/content\/prebid.content.js" ] }, { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "dist\/content\/gpt.content.js" ] }, { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "dist\/content\/other.content.js" ] } ], "host_permissions": [ "*:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "dist\/web-accessible\/prebid.web.js", "dist\/web-accessible\/gpt.web.js" ] } ], "icons": { "32": "\/icons\/32x32.png" } } |