Keyboard Shortcuts for Websites

Define keyboard shortcuts for actions of websites you use frequently

Keyboard Shortcuts for Websites란 무엇입니까?

Keyboard Shortcuts for Websites은(는) Behnam Azimi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Define keyboard shortcuts for actions of websites you use frequently"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Keyboard Shortcuts for Websites 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With Keyboard Shortcuts for Websites, you can define custom keyboard shortcuts for certain actions of websites you use frequently.

You can also export your custom shortcuts and share them with your friends or your teammates.

Version 1.7
- Name changed from "In-site Shortkeys" to "Keyboard Shortcuts for Websites"
- Script shortcuts functionality removed
- Prevent on input focus option added for individual shortcuts too.

Notice:
- It works only on websites.
- Shortcuts would trigger just when the focus is on the site itself.
- You need to trigger shortcuts on which page you define otherwise it will not find the target elements of its steps.
- You can't override some browser-reserved keyboard shortcuts.
- Because of new policies, it's impossible to inject Javascript codes and run it on a website, so I decided to remove the functionality of adding shortcuts for executing scripts that was available on the previous version.
- The name of the extension changed from "In-site Shortcuts" to "Keyboard Shortcuts for Websites" since v1.7

Because of the special event handling in some sites, This extension may not work properly, but we will continue to improve features and fix bugs.

For keyboard lovers and mouse haters 😄                    

확장 프로그램 기본 정보

이름 Keyboard Shortcuts for Websites Keyboard Shortcuts for Websites
ID dgigbgdgmhhncfgaidcbmafkcmagkool
공식 URL https://chromewebstore.google.com/detail/keyboard-shortcuts-for-we/dgigbgdgmhhncfgaidcbmafkcmagkool
설명 Define keyboard shortcuts for actions of websites you use frequently
파일 크기 62.57 KB
설치 횟수 475
현재 버전 1.8
최근 업데이트 2022-09-17
출시 날짜 2020-11-10
평점 4.57/5 총 14 개의 평점
개발자 Behnam Azimi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/behnamazimi/keyboard-shortcuts-for-websites
도움말 페이지 URL https://github.com/behnamazimi/keyboard-shortcuts-for-websites/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts for Websites",
    "version": "1.8",
    "description": "Define keyboard shortcuts for actions of websites you use frequently",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_page": "options\/settings.html",
    "action": {
        "matches": [
            "http:\/\/*\/*",
            "https:\/\/*\/*"
        ],
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "shared\/constant.js",
                "shared\/utils.js",
                "content\/shortcuts.js",
                "content\/index.js"
            ],
            "css": [
                "shared\/styles.css",
                "content\/content-styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "manifest_version": 3
}