Site Audit Extension
Extension for site Audit.
什么是Site Audit Extension?
Site Audit Extension是由Adpushup开发的Chrome扩展程序,该扩展的主要功能是“Extension for site Audit.”。
扩展截图
下载Site Audit Extension扩展crx文件
下载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" } } |