Query URL
Update url and links with custom query on the fly.
Query URLคืออะไร?
Query URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย crohrefdev และคุณลักษณะหลักของมันคือ "Update url and links with custom query on the fly."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Query URL
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } ] } |