Query URL
Update url and links with custom query on the fly.
Co to jest Query URL?
Query URL to rozszerzenie Chrome opracowane przez crohrefdev, a jego główną funkcją jest „Update url and links with custom query on the fly.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Query URL
Pobierz pliki rozszerzeń Query URL w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Oficjalny URL | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Opis | Update url and links with custom query on the fly. |
Rozmiar pliku | 19.98 KB |
Liczba instalacji | 35 |
Aktualna Wersja | 1.0.0.3 |
Ostatnia Aktualizacja | 2021-05-11 |
Data Publikacji | 2020-08-12 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | crohrefdev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/AlHota/query-url |
Adres URL Strony Pomocy | https://github.com/AlHota/query-url |
Obsługiwane Języki | 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" ] } ] } |