Search Queue
A queue for searching the web!
Search Queueคืออะไร?
Search Queue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย isaiahnields และคุณลักษณะหลักของมันคือ "A queue for searching the web!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Queue
ดาวน์โหลดไฟล์ส่วนขยาย Search Queue ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Search Queue adds a queue to search! This extension allows the user to queue up multiple searches and quickly make them.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Search Queue |
ID | ipcifbklbbpchinpdfcfbhpghnknioff |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/search-queue/ipcifbklbbpchinpdfcfbhpghnknioff |
คำอธิบาย | A queue for searching the web! |
ขนาดไฟล์ | 60.39 KB |
จำนวนการติดตั้ง | 37 |
เวอร์ชันปัจจุบัน | 2.18 |
อัปเดตครั้งล่าสุด | 2018-08-08 |
วันที่เผยแพร่ | 2018-08-08 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | isaiahnields |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/isaiahnields/search-queue |
URL หน้าช่วยเหลือ | https://github.com/isaiahnields/SearchQueue/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Search Queue", "version": "2.18", "icons": { "128": "resources\/images\/icon_128.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "description": "A queue for searching the web!", "background": { "scripts": [ "resources\/js\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": "resources\/images\/icon.png" }, "commands": { "next": { "suggested_key": { "default": "Alt+Up", "windows": "Alt+Up", "mac": "Alt+Up" }, "description": "Next", "global": false }, "previous": { "suggested_key": { "default": "Alt+Down", "windows": "Alt+Down", "mac": "Alt+Down" }, "description": "Previous", "global": false } }, "permissions": [ "storage", "notifications", "tabs", "background", "contextMenus" ] } |