Lightning Helper
Lightning Utilities
What is Lightning Helper?
Lightning Helper is a Chrome extension developed by Santosh Pradhan, and its main feature is "Lightning Utilities".
Extension Screenshots
Download Lightning Helper Extension CRX File
Download Lightning Helper 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
Salesforce Lightning Shortcuts - Ctrl + Shift + A: Opens App Launcher
Extension Basic Information
Name | Lightning Helper |
ID | apahmhmcpgopigbjnmjppafcgmpickeo |
Official URL | https://chromewebstore.google.com/detail/lightning-helper/apahmhmcpgopigbjnmjppafcgmpickeo |
Description | Lightning Utilities |
File Size | 9.94 KB |
Installation Count | 16 |
Current Version | 1.1 |
Last Updated | 2018-12-07 |
Publish Date | 2018-12-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Santosh Pradhan |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "name": "Lightning Helper", "version": "1.1", "description": "Lightning Utilities", "background": { "scripts": [ "js\/background.js" ] }, "icons": { "16": "images\/cloud_16.png", "48": "images\/cloud_48.png", "128": "images\/cloud_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ], "css": [], "js": [ "js\/script.js" ] } ], "commands": { "toggle-feature-launcher": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Open App Launcher" } }, "permissions": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ] } |