Query URL
Update url and links with custom query on the fly.
Query URL là gì?
Query URL là một tiện ích mở rộng Chrome được phát triển bởi crohrefdev, và tính năng chính của nó là "Update url and links with custom query on the fly.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Query URL
Tải xuống các tệp mở rộng Query URL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
URL Chính Thức | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
Mô tả | Update url and links with custom query on the fly. |
Kích Thước Tệp | 19.98 KB |
Số Lần Cài Đặt | 35 |
Phiên Bản Hiện Tại | 1.0.0.3 |
Cập Nhật Lần Cuối | 2021-05-11 |
Ngày Phát Hành | 2020-08-12 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | crohrefdev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/AlHota/query-url |
URL Trang Trợ Giúp | https://github.com/AlHota/query-url |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |