Tab pinner
Pin or unpin tab.
Tab pinner란 무엇입니까?
Tab pinner은(는) bibixx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pin or unpin tab."입니다.
확장 프로그램 스크린샷
Tab pinner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple extension for easily pinning and unpinning tabs using a button in a browser's toolbar. ## Features ## • Pin and unpin tabs using a toolbar button (or a keyboard shortcut) • Automatically pin tabs based on their url • Easily close the current tab by double clicking on a toolbar button (or by double pressing the keyboard shortcut) ## Issues ## If you have any issues feel free to post them here https://github.com/bibixx/tab-pinner/issues Or write an email to [email protected] ## Changelog ## https://github.com/bibixx/tab-pinner/releases
확장 프로그램 기본 정보
이름 | Tab pinner |
ID | mcclikmfcmcpejkaobpfkmmbekbhedoi |
공식 URL | https://chromewebstore.google.com/detail/tab-pinner/mcclikmfcmcpejkaobpfkmmbekbhedoi |
설명 | Pin or unpin tab. |
파일 크기 | 113 KB |
설치 횟수 | 1,573 |
현재 버전 | 3.0.3 |
최근 업데이트 | 2023-03-21 |
출시 날짜 | 2020-05-01 |
평점 | 4.71/5 총 7 개의 평점 |
개발자 | bibixx |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/bibixx/tab-pinner |
지원되는 언어 | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab pinner", "description": "__MSG_description__", "version": "3.0.3", "default_locale": "en", "permissions": [ "activeTab", "tabs", "storage" ], "background": { "service_worker": "background.js", "type": "module" }, "options_page": "options.html", "action": { "default_icon": { "16": "imgs\/icon_16.png", "48": "imgs\/icon_48.png", "128": "imgs\/icon_128.png", "256": "imgs\/icon_256.png" }, "default_title": "__MSG_pin__" }, "icons": { "16": "imgs\/icon_big_16.png", "48": "imgs\/icon_big_48.png", "128": "imgs\/icon_big_128.png", "256": "imgs\/icon_big_256.png" }, "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+X", "mac": "Command+Shift+X", "chromeos": "Ctrl+Shift+X", "linux": "Ctrl+Shift+X" } } }, "manifest_version": 3 } |