Custom Button
Customize a button.
Custom Button란 무엇입니까?
Custom Button은(는) Rubén Martínez에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize a button."입니다.
확장 프로그램 스크린샷
Custom Button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Custom button it's just that, a button that you can customize with an URL and icon. Features: - Set a custom URL to open on click. - Open in current tab, new tab, new window, new popup window or popup on button (this doesn't work with every site). - Change the icon. - Set the domains where it should work using a regular expression. - Show notification when domain doesn't match.
확장 프로그램 기본 정보
이름 | Custom Button |
ID | mphgmadkligoedhahoinkjghofkpmedf |
공식 URL | https://chromewebstore.google.com/detail/custom-button/mphgmadkligoedhahoinkjghofkpmedf |
설명 | Customize a button. |
파일 크기 | 30.12 KB |
설치 횟수 | 2,896 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2021-05-09 |
출시 날짜 | 2019-02-03 |
평점 | 4.50/5 총 26 개의 평점 |
개발자 | Rubén Martínez |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/rubenmv/chrome-extension-custom-button |
도움말 페이지 URL | https://github.com/rubenmv/chrome-extension-custom-button/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Button", "short_name": "Custom Button", "description": "Customize a button.", "version": "1.1.0", "permissions": [ "notifications", "storage", "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_icon": { "38": "images\/default-32.png", "19": "images\/default-24.png" } }, "icons": { "128": "images\/default-128.png", "48": "images\/default-64.png", "24": "images\/default-24.png" }, "background": { "scripts": [ "globals.js", "background.js" ] }, "options_page": "options.html" } |