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文件
下載Enable Backspace擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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). 擴展基本資訊
| 名稱 | |
| ID | ddijblnjiploanefjnbpimgbfjkpifia |
| 官方網址 | 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"
}
} | |