Keyboard Shortcuts for Websites

Define keyboard shortcuts for actions of websites you use frequently

Keyboard Shortcuts for Websites क्या है?

Keyboard Shortcuts for Websites Behnam Azimi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Define keyboard shortcuts for actions of websites you use frequently"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Keyboard Shortcuts for Websites एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}