User Agent Parser
Minimal UA parser chrome extension
What is User Agent Parser?
User Agent Parser is a Chrome extension developed by https://gokatz.me, and its main feature is "Minimal UA parser chrome extension".
Extension Screenshots
Download User Agent Parser Extension CRX File
Download User Agent Parser 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
Minimal User agent parser for Chrome. Know the browser right away just by selecting the user agent string.
Extension Basic Information
Name | User Agent Parser |
ID | fhniddaiimpnbammkjnjlngcfaljcela |
Official URL | https://chromewebstore.google.com/detail/user-agent-parser/fhniddaiimpnbammkjnjlngcfaljcela |
Description | Minimal UA parser chrome extension |
File Size | 246 KB |
Installation Count | 125 |
Current Version | 0.0.1 |
Last Updated | 2019-10-10 |
Publish Date | 2019-10-06 |
Rating | 1.00/5 Total 1 Ratings |
Developer | https://gokatz.me |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "User Agent Parser", "description": "Minimal UA parser chrome extension", "version": "0.0.1", "browser_action": { "default_icon": "assets\/images\/logo\/logo_48.png", "default_title": "User Agent Parser" }, "icons": { "16": "assets\/images\/logo\/logo_16.png", "48": "assets\/images\/logo\/logo_48.png", "128": "assets\/images\/logo\/logo_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "background": { "page": "background.html", "persistent": true }, "web_accessible_resources": [ "assets\/images\/logo\/logo_128.png" ] } |