Site Audit Extension
Extension for site Audit.
Site Audit Extension क्या है?
Site Audit Extension Adpushup द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for site Audit."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Site Audit Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |