URL Super Logger
Extension to log and track URLS visited.
What is URL Super Logger?
URL Super Logger is a Chrome extension developed by bkwcomputers, and its main feature is "Extension to log and track URLS visited.".
Extension Screenshots
Download URL Super Logger Extension CRX File
Download URL Super Logger 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
This app will send all visited URLs to an off-site server where the user can search those URLS. This is handy for a parent who wants to monitor their child's web browsing. The potential for blocking sites the parent wish the child not to visit is built in.
Extension Basic Information
Name | |
ID | dffkbhlncbbadjimioknoagiladkkcan |
Official URL | https://chrome.google.com/webstore/detail/url-super-logger/dffkbhlncbbadjimioknoagiladkkcan |
Description | Extension to log and track URLS visited. |
File Size | 35.54 KB |
Installation Count | 13 |
Current Version | 1.0.3 |
Last Updated | 2020-10-08 |
Publish Date | 2020-09-05 |
Developer | bkwcomputers |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "URL Super Logger", "description": "Extension to log and track URLS visited.", "version": "1.0.3", "manifest_version": 2, "icons": { "16": "stop-16.png", "128": "stop-128.png" }, "permissions": [ "storage", "tabs", "downloads", "alarms", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'; script-src-elem http:\/\/siren.chickenkiller.com 'self' ", "background": { "scripts": [ "blocked_domains.js", "background.js" ] } } |