Recent-tabs
Very fast switching tabs
什麼是Recent-tabs?
Recent-tabs是由sergcen17開發的Chrome擴展程式,該擴展的主要功能是“Very fast switching tabs”。
擴展截圖
下載Recent-tabs擴展crx文件
下載Recent-tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
# Recent-tabs Fast switch between tabs source code: https://github.com/sergcen/recent-tabs features: * Search by opened tabs * Search by bookmarks * Search by history * show all opened tabs in popup, sorted by last usage * 2-step search in browser history (if matched tabs count < 5) Browsers: Chrome, YandexBrowser ## Hotkeys CMD + E - open tabs popup (default for MAC, for Windows users set it manually) SHIFT + arrowRight - close selected tab SHIFT + arrowDown - closes everything tabs to the bottom, including selected CMD + C - copy URL of selected tab (CTRL + C for windows users)
擴展基本資訊
名稱 | Recent-tabs |
ID | aamlejepmlabpimifejjnmkjcolooifi |
官方網址 | https://chromewebstore.google.com/detail/recent-tabs/aamlejepmlabpimifejjnmkjcolooifi |
簡介 | Very fast switching tabs |
檔案大小 | 116 KB |
安裝次數 | 99 |
目前版本 | 1.5 |
更新時間 | 2020-05-06 |
上架時間 | 2020-05-05 |
評分 | 5.00/5 共 6 次評分 |
開發者 | sergcen17 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.5", "manifest_version": 2, "short_name": "__MSG_appShortName__", "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "pages\/popup.html" }, "options_ui": { "page": "pages\/settings.html", "open_in_tab": false }, "commands": { "_execute_browser_action": [], "move-tabs-new-window": { "suggested_key": { "default": "Alt+N" }, "description": "Move tabs to new window" } }, "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "history", "tabs", "storage", "bookmarks" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |