Site Audit Extension
Extension for site Audit.
Site Audit Extension là gì?
Site Audit Extension là một tiện ích mở rộng Chrome được phát triển bởi Adpushup, và tính năng chính của nó là "Extension for site Audit.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Site Audit Extension
Tải xuống các tệp mở rộng Site Audit Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Site Audit Extension |
ID | komkgjgoffjlpldfpdloocnmphefkfji |
URL Chính Thức | https://chromewebstore.google.com/detail/site-audit-extension/komkgjgoffjlpldfpdloocnmphefkfji |
Mô tả | Extension for site Audit. |
Kích Thước Tệp | 76.67 KB |
Số Lần Cài Đặt | 180 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2022-09-02 |
Ngày Phát Hành | 2022-08-31 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Adpushup |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |