Pinput for Pinboard
Light-weight chrome extension for Pinboard.
Pinput for Pinboard란 무엇입니까?
Pinput for Pinboard은(는) Shogo Sensui에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Light-weight chrome extension for Pinboard."입니다.
확장 프로그램 스크린샷
Pinput for Pinboard 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Pinput is a lightweight chrome extension for Pinboard. A Pinboard API token is required, so you need to set it at the options page. A Pinboard API token is available for all Pinboard users without any special configuration. Get yours from "https://pinboard.in/settings/password". ■ Shortcut keys 1. "Control + B" - To open popup window 2. "Control + Shift + B" - Bookmark current URL directly --- 軽快に動作するPinboardのChrome Extensionです。 PinboardのAPIトークンをオプションページから設定する必要があります。 トークンはPinboardユーザーならば誰でも、特殊な設定等をせずに使うことができます。 https://pinboard.in/settings/password から入手してください。 ■ ショートカットキー "Control + B" - ポップアップウィンドウを開きます。 "Control + Shift + B" - 現在閲覧中のURLを直接ブックマークします。
확장 프로그램 기본 정보
이름 | Pinput for Pinboard |
ID | dpbpmblpmphlphljmcahiifjcmcdpjna |
공식 URL | https://chromewebstore.google.com/detail/pinput-for-pinboard/dpbpmblpmphlphljmcahiifjcmcdpjna |
설명 | Light-weight chrome extension for Pinboard. |
파일 크기 | 206 KB |
설치 횟수 | 289 |
현재 버전 | 1.11.0 |
최근 업데이트 | 2019-06-23 |
출시 날짜 | 2019-06-22 |
평점 | 4.50/5 총 20 개의 평점 |
개발자 | Shogo Sensui |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/1000ch/pinput |
도움말 페이지 URL | http://github.com/1000ch/pinput/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinput for Pinboard", "short_name": "Pinput", "version": "1.11.0", "description": "Light-weight chrome extension for Pinboard.", "author": "1000ch", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "page": "html\/background.html" }, "browser_action": { "default_icon": "icons\/icon38.png", "default_title": "Pinput for Pinboard", "default_popup": "html\/popup.html" }, "options_ui": { "page": "html\/options.html" }, "commands": { "direct-bookmark": { "suggested_key": { "default": "Ctrl+Shift+B", "mac": "MacCtrl+Shift+B" }, "description": "Bookmark directly without opening popup window." }, "_execute_browser_action": { "suggested_key": { "default": "Ctrl+B", "mac": "MacCtrl+B" }, "description": "Open popup window." } } } |