Site Audit Extension
Extension for site Audit.
O que é Site Audit Extension?
Site Audit Extension é uma extensão do Chrome desenvolvida por Adpushup, e sua principal característica é "Extension for site Audit.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Site Audit Extension
Baixe arquivos de extensão Site Audit Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Site Audit Extension |
ID | komkgjgoffjlpldfpdloocnmphefkfji |
URL Oficial | https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji |
Descrição | Extension for site Audit. |
Tamanho do Arquivo | 76.67 KB |
Contagem de Instalações | 180 |
Versão Atual | 1.2 |
Última Atualização | 2022-09-02 |
Data de Publicação | 2022-08-31 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Adpushup |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |