Amazing Salesforce Chrome Extension
This is the most amazing Salesforce Chrome Extension
What is Amazing Salesforce Chrome Extension?
Amazing Salesforce Chrome Extension is a Chrome extension developed by Enrico Murru, and its main feature is "This is the most amazing Salesforce Chrome Extension".
Extension Screenshots
Download Amazing Salesforce Chrome Extension Extension CRX File
Download Amazing Salesforce Chrome Extension 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
Example Chrome Extension from DF17 session by Enrico Murru (Build your own jaw-dropping Salesforce Chrome Extension). See https://github.com/enreeco/sf-df17-chrome-ext-sesssion
Extension Basic Information
Name | Amazing Salesforce Chrome Extension |
ID | mmkccibgnkbmlhgddpnipfciejgfdaoc |
Official URL | https://chromewebstore.google.com/detail/amazing-salesforce-chrome/mmkccibgnkbmlhgddpnipfciejgfdaoc |
Description | This is the most amazing Salesforce Chrome Extension |
File Size | 159 KB |
Installation Count | 85 |
Current Version | 0.0.5 |
Last Updated | 2017-11-15 |
Publish Date | 2017-11-15 |
Developer | Enrico Murru |
[email protected] | |
Payment Type | free |
Extension Website | https://enree.co |
Help Page URL | https://enree.co |
Privacy Policy Page URL | https://organizer.solutions/privacypolicy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazing Salesforce Chrome Extension", "short_name": "Amazing Salesforce Chrome Extension", "description": "This is the most amazing Salesforce Chrome Extension", "version": "0.0.5", "author": { "name": "Enrico Murru", "url": "http:\/\/enree.co" }, "homepage_url": "http:\/\/enree.co", "permissions": [ "tabs", "storage", "cookies", "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ], "web_accessible_resources": [ "options.html", "swissknife.html", "img\/*" ], "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup.html", "default_title": "Amazing Salesforce Chrome Extension" }, "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "all_frames": false, "js": [ "libs\/constants.js", "libs\/utils.js", "libs\/content.js" ], "css": [ "css\/content.css" ] } ], "background": { "scripts": [ "libs\/constants.js", "libs\/utils.js", "libs\/background.js" ], "persistent": true }, "options_page": "options.html" } |