Linkman
This extension communicates between the Chrome browser and the Windows bookmark manager Linkman.
Linkman란 무엇입니까?
Linkman은(는) Outertech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension communicates between the Chrome browser and the Windows bookmark manager Linkman."입니다.
확장 프로그램 스크린샷
Linkman 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This chrome extension gives you the ability to work with the Windows bookmark manager Linkman directly from your Chrome browser. You can add new bookmarks from Chrome to Linkman and also search for bookmarks in Linkman. Please keep in mind that you need to install the Windows Linkman application, before installing the Linkman Chrome (http://www.outertech.com/en/bookmark-manager). You can see a tutorial for Linkman on youtube: http://www.youtube.com/v/K9k-wVDwYtw?vq=hd1080
확장 프로그램 기본 정보
이름 | Linkman |
ID | pchnedaeogijkjjkjigbijhbcanbdjkc |
공식 URL | https://chromewebstore.google.com/detail/linkman/pchnedaeogijkjjkjigbijhbcanbdjkc |
설명 | This extension communicates between the Chrome browser and the Windows bookmark manager Linkman. |
파일 크기 | 32.9 KB |
설치 횟수 | 5,026 |
현재 버전 | 8.9.7.0 |
최근 업데이트 | 2017-06-26 |
출시 날짜 | 2017-06-26 |
평점 | 4.20/5 총 30 개의 평점 |
개발자 | Outertech |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.outertech.com/en/bookmark-manager |
도움말 페이지 URL | http://www.outertech.com/en/contact |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Linkman", "manifest_version": 2, "description": "This extension communicates between the Chrome browser and the Windows bookmark manager Linkman.", "version": "8.9.7.0", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "linkman16.png", "48": "linkman48.png", "128": "linkman128.png" }, "options_page": "options.html", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/127.0.0.1\/*", "http:\/\/localhost\/*" ], "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "run_at": "document_start" } ], "browser_action": { "default_title": "Linkman", "default_popup": "popup.html", "default_icon": "linkman19.png" }, "commands": { "ADDURL": { "suggested_key": { "default": "Ctrl+Q" }, "description": "Add to Linkman" }, "ADDURLEDIT": { "suggested_key": { "default": "Ctrl+B" }, "description": "Add to Linkman and Edit" }, "SEARCH": { "suggested_key": { "default": "Ctrl+Y" }, "description": "Search Linkman" }, "ADDURLMULTIPLE": { "suggested_key": { "default": "Ctrl+Shift+A" }, "description": "Add all tabs to Linkman" } } } |