Query URL
Update url and links with custom query on the fly.
Was ist Query URL?
Query URL ist eine Chrome-Erweiterung, die von crohrefdev entwickelt wurde, und ihr Hauptmerkmal ist "Update url and links with custom query on the fly.".
Erweiterungsscreenshots
Query URL-Erweiterungs-CRX-Datei herunterladen
Laden Sie Query URL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Offizielle URL | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Beschreibung | Update url and links with custom query on the fly. |
Dateigröße | 19.98 KB |
Installationsanzahl | 35 |
Aktuelle Version | 1.0.0.3 |
Letztes Update | 2021-05-11 |
Veröffentlichungsdatum | 2020-08-12 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | crohrefdev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/AlHota/query-url |
Hilfeseite URL | https://github.com/AlHota/query-url |
Unterstützte Sprachen | 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" ] } ] } |