Custom Shortcut Button
Allows you to set a custom shortcut button next to your address bar.
Custom Shortcut Button란 무엇입니까?
Custom Shortcut Button은(는) xylophono에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to set a custom shortcut button next to your address bar."입니다.
확장 프로그램 스크린샷
Custom Shortcut Button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Custom Shortcut Button puts a new button next to your address bar, which you can then use to easily and repeatedly open a custom URL in a new tab. To set the URL please right click on the icon and select "Options". Changelog: V1.0 - Jan 31st 2017 - Initial release. For any issues please contact [email protected] :)
확장 프로그램 기본 정보
이름 | Custom Shortcut Button |
ID | kcmejemnmnheajipjgilcefofjchdafg |
공식 URL | https://chromewebstore.google.com/detail/custom-shortcut-button/kcmejemnmnheajipjgilcefofjchdafg |
설명 | Allows you to set a custom shortcut button next to your address bar. |
파일 크기 | 48.96 KB |
설치 횟수 | 713 |
현재 버전 | 1.0 |
최근 업데이트 | 2017-01-31 |
출시 날짜 | 2017-01-31 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | xylophono |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Shortcut Button", "short_name": "Custom Shortcut", "description": "Allows you to set a custom shortcut button next to your address bar.", "version": "1.0", "version_name": "1.0", "minimum_chrome_version": "38", "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png", "512": "assets\/icon.png" }, "browser_action": { "default_icon": "assets\/icon.png", "default_title": "" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage" ], "options_ui": { "page": "index.html" } } |