Query URL
Update url and links with custom query on the fly.
What is Query URL?
Query URL is a Chrome extension developed by crohrefdev, and its main feature is "Update url and links with custom query on the fly.".
Extension Screenshots
Download Query URL Extension CRX File
Download Query URL 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
Query URL extension resolves url custom queries. Simply add query or hash and extension will update url with defined query for you. Every html tag will be updated with you query so that you do not need to add it manually to every link you follow.
Extension Basic Information
Name | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Official URL | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Description | Update url and links with custom query on the fly. |
File Size | 19.98 KB |
Installation Count | 35 |
Current Version | 1.0.0.3 |
Last Updated | 2021-05-11 |
Publish Date | 2020-08-12 |
Rating | 5.00/5 Total 2 Ratings |
Developer | crohrefdev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AlHota/query-url |
Help Page URL | https://github.com/AlHota/query-url |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Query URL", "description": "Update url and links with custom query on the fly.", "version": "1.0.0.3", "content_security_policy": "default-src 'self'", "manifest_version": 2, "browser_action": { "default_icon": ".\/icons\/icon19.png", "default_popup": "popup.html" }, "icons": { "16": ".\/icons\/icon16.png", "19": ".\/icons\/icon19.png", "48": ".\/icons\/icon48.png", "128": ".\/icons\/icon128.png" }, "permissions": [ "activeTab", "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "*:\/\/*\/*" ], "js": [ ".\/js\/main.js" ] } ] } |