Bookmarker
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.
Bookmarker란 무엇입니까?
Bookmarker은(는) bookmarker extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user."입니다.
확장 프로그램 스크린샷
Bookmarker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. We're looking for feedback! Shoot us a response here! https://goo.gl/forms/AxniAdIRad9EZg2Y2
확장 프로그램 기본 정보
이름 | |
ID | glhpfpaemdkplbllfmkbigklacjneoba |
공식 URL | https://chrome.google.com/webstore/detail/bookmarker/glhpfpaemdkplbllfmkbigklacjneoba |
설명 | Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. |
파일 크기 | 962 KB |
설치 횟수 | 36 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2019-02-24 |
출시 날짜 | 2019-02-24 |
평점 | 3.50/5 총 4 개의 평점 |
개발자 | bookmarker extension |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/nami634/Bookmarker |
도움말 페이지 URL | https://github.com/nami634/Bookmarker/issues |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmarker", "short_name": "Bookmarker", "description": "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.", "version": "1.2.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-38.png" }, "default_title": "Bookmarker", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" } ], "options_page": "pages\/options.html", "options_ui": { "page": "pages\/options.html", "chrome_style": true }, "permissions": [ "tabs", "bookmarks", "activeTab", "storage", "management", "chrome:\/\/favicon\/" ], "commands": { "_execute_browser_action": { "global": false, "suggested_key": [ { "default": "Ctrl+D", "windows": "Ctrl+D", "mac": "Command+D" } ] }, "delete_bookmark": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+I" }, "description": "\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u524a\u9664" } } } |