Query URL
Update url and links with custom query on the fly.
Vad är Query URL?
Query URL är en Chrome-tillägg utvecklad av crohrefdev, och dess huvudfunktion är "Update url and links with custom query on the fly.".
Tilläggsskärmbilder
Ladda ner Query URL-förlängningens CRX-fil
Ladda ner Query URL-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Officiell webbadress | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Beskrivning | Update url and links with custom query on the fly. |
Filstorlek | 19.98 KB |
Antal Installationer | 35 |
Aktuell Version | 1.0.0.3 |
Senast Uppdaterad | 2021-05-11 |
Publiceringsdatum | 2020-08-12 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | crohrefdev |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/AlHota/query-url |
Hjälpsida URL | https://github.com/AlHota/query-url |
Stödda Språk | 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" ] } ] } |