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はhttps://thorium.rocksによって開発されたChromeの拡張機能で、その主な機能は「Re-enables the backspace key as a back navigation button (except when writing text).」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Go Back With Backspace拡張機能のCRXファイルをダウンロード

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
Eメール [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": [
        ""
    ]
}