MultiLinks Shortcut
This extension speed up opening several tabs you daily use.
MultiLinks Shortcutคืออะไร?
MultiLinks Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jrochelly และคุณลักษณะหลักของมันคือ "This extension speed up opening several tabs you daily use."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MultiLinks Shortcut
ดาวน์โหลดไฟล์ส่วนขยาย MultiLinks Shortcut ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Multilink is a simple extension that lets you open several web pages at once. Just save the links you want on options page, than just click on multilink icon and ta-da. You can add as many pages as you want. Visit https://github.com/jrochelly/multilinks for troubleshooting and how to get involved.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MultiLinks Shortcut |
ID | ddfoagnhebpbidjkganhgninciiecgon |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/multilinks-shortcut/ddfoagnhebpbidjkganhgninciiecgon |
คำอธิบาย | This extension speed up opening several tabs you daily use. |
ขนาดไฟล์ | 49.66 KB |
จำนวนการติดตั้ง | 1,193 |
เวอร์ชันปัจจุบัน | 0.3.2 |
อัปเดตครั้งล่าสุด | 2015-07-02 |
วันที่เผยแพร่ | 2015-07-01 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | jrochelly |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MultiLinks Shortcut", "description": "This extension speed up opening several tabs you daily use.", "version": "0.3.2", "options_page": "options.html", "commands": { "toggle-feature": { "description": "Open links", "suggested_key": { "default": "Alt+Shift+L", "mac": "Alt+Shift+L" } } }, "content_scripts": [ { "matches": [ "http:\/\/jquery.com\/*" ], "js": [ "js\/jquery.js" ], "run_at": "document_end" } ], "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "storage", "tabs", "http:\/\/ajax.googleapis.com\/" ] } |