MultiLinks Shortcut
This extension speed up opening several tabs you daily use.
MultiLinks Shortcut là gì?
MultiLinks Shortcut là một tiện ích mở rộng Chrome được phát triển bởi jrochelly, và tính năng chính của nó là "This extension speed up opening several tabs you daily use.".
Ả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 MultiLinks Shortcut
Tải xuống các tệp mở rộng MultiLinks Shortcut 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MultiLinks Shortcut |
ID | ddfoagnhebpbidjkganhgninciiecgon |
URL Chính Thức | https://chromewebstore.google.com/detail/multilinks-shortcut/ddfoagnhebpbidjkganhgninciiecgon |
Mô tả | This extension speed up opening several tabs you daily use. |
Kích Thước Tệp | 49.66 KB |
Số Lần Cài Đặt | 1,193 |
Phiên Bản Hiện Tại | 0.3.2 |
Cập Nhật Lần Cuối | 2015-07-02 |
Ngày Phát Hành | 2015-07-01 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | jrochelly |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |