Go Back With Backspace

Re-enables the backspace key as a back navigation button (except when writing text).

Go Back With Backspaceคืออะไร?

Go Back With Backspace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thorium.rocks และคุณลักษณะหลักของมันคือ "Re-enables the backspace key as a back navigation button (except when writing text)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Go Back With Backspace

ดาวน์โหลดไฟล์ส่วนขยาย Go Back With Backspace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chromium/Chrome extension which re-enables the backspace key as a back navigation button (except when writing text).
 – It is a fork of https://chrome.google.com/webstore/detail/go-back-with-backspace/eekailopagacbcdloonjhbiecobagjci updated to Manifest V3, with small CSS and icon fixes.

 - Alex313031                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Go Back With Backspace Go Back With Backspace
ID pgmlidkcpfcjeeenlbkfmagkeclinnkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/go-back-with-backspace/pgmlidkcpfcjeeenlbkfmagkeclinnkh
คำอธิบาย Re-enables the backspace key as a back navigation button (except when writing text).
ขนาดไฟล์ 372 KB
จำนวนการติดตั้ง 896
เวอร์ชันปัจจุบัน 3.0.2
อัปเดตครั้งล่าสุด 2023-06-20
วันที่เผยแพร่ 2023-03-09
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://thorium.rocks
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Alex313031/Chromium-Backspace
URL หน้าช่วยเหลือ https://github.com/Alex313031/Chromium-Backspace/issues
URL หน้านโยบายความเป็นส่วนตัว https://thorium.rocks/COC.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "3.0.2",
    "version_name": "3.0.2",
    "offline_enabled": true,
    "manifest_version": 3,
    "minimum_chrome_version": "91",
    "author": {
        "email": "[email protected]"
    },
    "homepage_url": "https:\/\/github.com\/Alex313031\/Chromium-Backspace",
    "icons": {
        "16": "icons\/icon_16.png",
        "24": "icons\/icon_24.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "is_editable.js",
                "content_script.js"
            ],
            "all_frames": true,
            "match_origin_as_fallback": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "management",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}