Enable Backspace
Enable backspace navigation with just one click!
Enable Backspace란 무엇입니까?
Enable Backspace은(는) loora에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable backspace navigation with just one click!"입니다.
확장 프로그램 스크린샷
Enable Backspace 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enable Backspace extension enables you to easily navigate to the previous page by clicking on the "backspace" button on your keyboard. Recently in modern browsers, the "go-back" feature for the backspace button was removed. This add-on helps you bring back this functionality to your browser. It has a toolbar icon that serves as the toggle switch. Once the add-on is active, the toolbar icon color is dark grey. In the inactive state, the icon color changes to light grey. Please note that this add-on does not have any options or settings page. Simply add it to your browser and start using it. If you have a feature request or found a bug to report, please submit the bug report form on the addon's homepage (https://mybrowseraddon.com/enable-backspace.html).
확장 프로그램 기본 정보
이름 | Enable Backspace |
ID | ddijblnjiploanefjnbpimgbfjkpifia |
공식 URL | https://chromewebstore.google.com/detail/enable-backspace/ddijblnjiploanefjnbpimgbfjkpifia |
설명 | Enable backspace navigation with just one click! |
파일 크기 | 24.31 KB |
설치 횟수 | 4,401 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2023-11-08 |
출시 날짜 | 2018-06-23 |
평점 | 3.50/5 총 6 개의 평점 |
개발자 | loora |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/enable-backspace.html |
도움말 페이지 URL | https://mybrowseraddon.com/enable-backspace.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.2", "manifest_version": 3, "offline_enabled": true, "name": "Enable Backspace", "permissions": [ "storage" ], "description": "Enable backspace navigation with just one click!", "homepage_url": "https:\/\/mybrowseraddon.com\/enable-backspace.html", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Enable Backspace", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": false, "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |