pinner
adds a pin tab button so you don't have to right click to pin or unpin.
pinner란 무엇입니까?
pinner은(는) theQxQ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "adds a pin tab button so you don't have to right click to pin or unpin."입니다.
확장 프로그램 스크린샷
pinner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This application puts a pin to the right of your address bar. Click it to pin or unpin a tab. This is useful to people who pin and unpin tabs a lot and hates the lengthy process of right clicking and finding the "pin tab" option. You can also use the hotkey alt-p to pin/unpin a tab. Thank you to clker.com for their images of pins: http://www.clker.com/cliparts/4/a/9/a/119498442666107289pin_-red_nicu_buculei_01.svg.hi.png http://www.clker.com/cliparts/3/2/0/d/1194984425806666249pin_-_blue_nicu_buculei_01.svg.hi.png Also thanks to livibetter who created the application "keep last two tabs". I used his code as a kickstart to make this application. (https://chrome.google.com/webstore/detail/fcnmaiiahjldikaollhjobhchdbhfhgf) Created by theQxQ. please comment if you found any glitches or if you have some ideas you want to see in this extension. Also note that this extensions is unlikely to be updated anymore, but they are open source, so if you really want a feature, you can go ahead and add it. it is also under the mit license, so feel free to fork the code and use it any way you want. You might also like "close pinned tab" close a pinned tab without right clicking: https://chrome.google.com/webstore/detail/jjnlecdojfenkidbfdjejdmajggkegca
확장 프로그램 기본 정보
이름 | pinner |
ID | nhjpoicdffokejclclfchgbhfjcmnmic |
공식 URL | https://chromewebstore.google.com/detail/pinner/nhjpoicdffokejclclfchgbhfjcmnmic |
설명 | adds a pin tab button so you don't have to right click to pin or unpin. |
파일 크기 | 28.02 KB |
설치 횟수 | 734 |
현재 버전 | 0.4.1 |
최근 업데이트 | 2014-01-07 |
출시 날짜 | 2014-01-07 |
평점 | 4.64/5 총 11 개의 평점 |
개발자 | theQxQ |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://plus.google.com/b/106552878299900880681/ |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "pinner", "version": "0.4.1", "manifest_version": 2, "description": "adds a pin tab button so you don't have to right click to pin or unpin.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "page": "background.html" }, "permissions": [ "tabs" ], "browser_action": { "default_icon": "pin.png", "default_title": "pin tab" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+P", "mac": "Alt+P", "chromeos": "Alt+P", "linux": "Alt+P" } } } } |