New Adjacent Tab
Opens a new tab to the right or left of the current one.
New Adjacent Tab란 무엇입니까?
New Adjacent Tab은(는) https://www.adelsaoud.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens a new tab to the right or left of the current one."입니다.
확장 프로그램 스크린샷
New Adjacent Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser. New Adjacent Tab allows you to open tabs to the right/left through keyboard shortcuts, the context menu, and the extension's icon. All settings are configurable and are automatically synced across your devices if you're signed in to Google Chrome. The default keyboard shortcuts are: - Alt+T to open a new tab to the right of the current one. - Alt+H to open a new tab to the left of the current one.
확장 프로그램 기본 정보
이름 | New Adjacent Tab |
ID | fommpldicogfgegfpcoibmhkbbdpodjg |
공식 URL | https://chromewebstore.google.com/detail/new-adjacent-tab/fommpldicogfgegfpcoibmhkbbdpodjg |
설명 | Opens a new tab to the right or left of the current one. |
파일 크기 | 10.7 KB |
설치 횟수 | 7,266 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-09-14 |
출시 날짜 | 2019-09-23 |
평점 | 4.90/5 총 41 개의 평점 |
개발자 | https://www.adelsaoud.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.adelsaoud.com/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "New Adjacent Tab", "version": "1.0.2", "description": "Opens a new tab to the right or left of the current one.", "permissions": [ "contextMenus", "storage" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "action": [], "options_ui": { "page": "options.html" }, "commands": { "newTabToTheRight": { "suggested_key": { "default": "Alt+T" }, "description": "New tab to the right" }, "newTabToTheLeft": { "suggested_key": { "default": "Alt+H" }, "description": "New tab to the left" } } } |