NexTab
Open new tabs to the left or right of your active tab.
NexTab란 무엇입니까?
NexTab은(는) https://nextab.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open new tabs to the left or right of your active tab."입니다.
확장 프로그램 스크린샷
NexTab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Ever been frustrated that new tabs open at the end of all your current tabs. Then this is for you. NexTab simply extends the default browser functionality for opening new tabs by opening them next to your current tab, instead of at the end. NexTab comes with two predefined shortcuts out of the box. Or if you'd prefer to customise them, open the popup and follow the link to add your own.
확장 프로그램 기본 정보
이름 | NexTab |
ID | okknollmafgigeimghbepomindhjnabj |
공식 URL | https://chromewebstore.google.com/detail/nextab/okknollmafgigeimghbepomindhjnabj |
설명 | Open new tabs to the left or right of your active tab. |
파일 크기 | 673 KB |
설치 횟수 | 113 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2020-06-01 |
출시 날짜 | 2020-06-01 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://nextab.co |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://nextab.co |
도움말 페이지 URL | https://nextab.co |
개인정보 보호 정책 페이지 URL | https://nextab.co |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NexTab", "description": "Open new tabs to the left or right of your active tab.", "version": "0.0.3", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_title": "NexTab", "default_popup": "popup\/popup.html" }, "background": { "page": "background.html" }, "commands": { "open-right": { "suggested_key": { "default": "Alt+T", "mac": "Alt+T", "windows": "Alt+T" }, "description": "Opens new tabs to the right of your current tab" }, "open-left": { "suggested_key": { "default": "Alt+Shift+T", "mac": "Alt+Shift+T", "windows": "Alt+Shift+T" }, "description": "Opens new tabs to the left of your current tab" } }, "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'" } |