Query URL
Update url and links with custom query on the fly.
Query URLとは何ですか?
Query URLはcrohrefdevによって開発されたChromeの拡張機能で、その主な機能は「Update url and links with custom query on the fly.」です。
拡張機能のスクリーンショット
Query URL拡張機能のCRXファイルをダウンロード
Query URL拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
公式URL | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
説明 | Update url and links with custom query on the fly. |
ファイルサイズ | 19.98 KB |
インストール数 | 35 |
現在のバージョン | 1.0.0.3 |
最終更新日 | 2021-05-11 |
公開日 | 2020-08-12 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | crohrefdev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/AlHota/query-url |
ヘルプページのURL | https://github.com/AlHota/query-url |
対応言語 | 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" ] } ] } |