Recent-tabs
Very fast switching tabs
Recent-tabs란 무엇입니까?
Recent-tabs은(는) sergcen17에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Very fast switching tabs"입니다.
확장 프로그램 스크린샷
Recent-tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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) 확장 프로그램 기본 정보
| 이름 | |
| ID | aamlejepmlabpimifejjnmkjcolooifi |
| 공식 URL | 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'"
} | |