Clerk Service Sniffer
Checks if Clerk is running on given page. Click around!
What is Clerk Service Sniffer?
Clerk Service Sniffer is a Chrome extension developed by Alexander Bugge Stage, and its main feature is "Checks if Clerk is running on given page. Click around!".
Extension Screenshots
Download Clerk Service Sniffer Extension CRX File
Download Clerk Service Sniffer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Check resource loading to see if cdn.clerk.io or api.clerk.io deliver resources to the page.
Extension Basic Information
Name | |
ID | beocafikmjfhefiagkkcclabdianmpbn |
Official URL | https://chromewebstore.google.com/detail/clerk-service-sniffer/beocafikmjfhefiagkkcclabdianmpbn |
Description | Checks if Clerk is running on given page. Click around! |
File Size | 40.38 KB |
Installation Count | 76 |
Current Version | 0.1 |
Last Updated | 2022-07-27 |
Publish Date | 2022-07-26 |
Developer | Alexander Bugge Stage |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clerk Service Sniffer", "description": "Checks if Clerk is running on given page. Click around!", "version": "0.1", "author": "Alexander Bugge Stage | [email protected]", "short_name": "CleSS", "manifest_version": 3, "background": { "service_worker": "js\/worker.js" }, "permissions": [ "activeTab", "background" ], "action": [], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "js\/content_script.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/injected.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "\/assets\/icons\/color\/16.png", "32": "\/assets\/icons\/color\/32.png", "48": "\/assets\/icons\/color\/48.png", "128": "\/assets\/icons\/color\/128.png" } } |