Salesforce Hotkeys (Beta)
Adds hotkeys (keyboard shortcuts) to your salesforce record page. Example - CTRL + E for edit, CTRL + S for save and many more!
Salesforce Hotkeys (Beta)คืออะไร?
Salesforce Hotkeys (Beta) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Prafulla Patil และคุณลักษณะหลักของมันคือ "Adds hotkeys (keyboard shortcuts) to your salesforce record page. Example - CTRL + E for edit, CTRL + S for save and many more!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Hotkeys (Beta)
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Hotkeys (Beta) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension provides 2 types of hotkeys:
★ Hotkeys with CTRL, ALT and SHIFT buttons
★ GMail like combo keys (#awesomeness)
===================================
★ Questions/Feedback - bit.ly/hotkeys-feedback
===================================
★ Complete List of Hotkeys - bit.ly/sfdchotkeys
===================================
Example:
1. ( CTRL + E ) OR ( h h e ) - for editing record (When user is on record detail page) [this is similar to clicking Edit button on screen].
2. ( CTRL + S ) OR ( h h s )- to save record when user is on Edit record page or (Editing record inline). [this is similar to clicking Save button on screen].
===================================
NOTE:
1. This extension will NOT work for non-English salesforce users (users who have other Language selected on the user record in salesforce).
2. This extension also do NOT work on salesforce console(as it already have hotkeys).
===================================
Please send me any ideas for enhancements that you have to make the this better (http://bit.ly/hotkeys-feedback).
===================================
★ Please note that this is not an official Salesforce extension ★ ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | hkpmdgakkflkddmiffelfaokkgoamlil |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-hotkeys-beta/hkpmdgakkflkddmiffelfaokkgoamlil |
| คำอธิบาย | Adds hotkeys (keyboard shortcuts) to your salesforce record page. Example - CTRL + E for edit, CTRL + S for save and many more! |
| ขนาดไฟล์ | 15.29 KB |
| จำนวนการติดตั้ง | 2,128 |
| เวอร์ชันปัจจุบัน | 0.4.1 |
| อัปเดตครั้งล่าสุด | 2015-05-06 |
| วันที่เผยแพร่ | 2015-05-05 |
| คะแนน | 4.82/5 รวมทั้งหมด 22 คะแนน |
| ผู้พัฒนา | Prafulla Patil |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://docs.google.com/spreadsheets/d/1GPO0dmEkSjodrUaF_rN_ZuErBfbRfid3_zItAQc5sus/pubhtml?gid=1040039296&single=true |
| URL หน้าช่วยเหลือ | https://docs.google.com/spreadsheets/d/1GPO0dmEkSjodrUaF_rN_ZuErBfbRfid3_zItAQc5sus/pubhtml?gid=1040039296&single=true |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Salesforce Hotkeys (Beta)",
"version": "0.4.1",
"description": "Adds hotkeys (keyboard shortcuts) to your salesforce record page. Example - CTRL + E for edit, CTRL + S for save and many more!",
"manifest_version": 2,
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.visual.force.com\/*"
]
}
],
"web_accessible_resources": [
"script.js"
],
"browser_action": {
"default_title": "Salesforce Hotkeys Info",
"default_icon": "hotkey_Icon.png",
"default_popup": "popup.html"
}
} | |