Keyboard Shortcuts for Websites
Define keyboard shortcuts for actions of websites you use frequently
Keyboard Shortcuts for Websitesคืออะไร?
Keyboard Shortcuts for Websites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Behnam Azimi และคุณลักษณะหลักของมันคือ "Define keyboard shortcuts for actions of websites you use frequently"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keyboard Shortcuts for Websites
ดาวน์โหลดไฟล์ส่วนขยาย Keyboard Shortcuts for Websites ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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 } |