keymapper

Set hotkeys

What is keymapper?

keymapper is a Chrome extension developed by yinm, and its main feature is "Set hotkeys".

Extension Screenshots

screenshot

Download keymapper Extension CRX File

Download keymapper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        任意のキーに、以下のアクションを割り当てられます。

- 指定した形式でタイトルとURLをコピー
- ページを戻る
- ページを進む
- 上へスクロール
- 下へスクロール
- ウィンドウの一番上へスクロール
- ウィンドウの一番下へスクロール
- タブの固定
- 最初の入力要素にフォーカス

ソースコードは以下で公開しています。
https://github.com/yinm/keymapper                    

Extension Basic Information

Name keymapper keymapper
ID gddmjjinakgblokjagbcehkccngffpdj
Official URL https://chromewebstore.google.com/detail/keymapper/gddmjjinakgblokjagbcehkccngffpdj
Description Set hotkeys
File Size 62.79 KB
Installation Count 182
Current Version 0.9.0
Last Updated 2023-12-27
Publish Date 2018-11-19
Rating 2.50/5 Total 2 Ratings
Developer yinm
Email [email protected]
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "keymapper",
    "description": "Set hotkeys",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "version": "0.9.0",
    "options_page": "index.html",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index.ts-loader.dc29ea59.js"
            ],
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/detectKeyString.e502c0c0.js",
                "assets\/const.ab412616.js",
                "assets\/index.ts.c456bb66.js"
            ],
            "use_dynamic_url": true
        }
    ]
}