Site Audit Extension
Extension for site Audit.
Cos'è Site Audit Extension?
Site Audit Extension è un'estensione di Chrome sviluppata da Adpushup, e la sua funzione principale è "Extension for site Audit.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Site Audit Extension
Scarica i file di estensione Site Audit Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Site Audit Extension |
ID | komkgjgoffjlpldfpdloocnmphefkfji |
URL Ufficiale | https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji |
Descrizione | Extension for site Audit. |
Dimensione del File | 76.67 KB |
Conteggio Installazioni | 180 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2022-09-02 |
Data di Pubblicazione | 2022-08-31 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Adpushup |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |