Amazing Salesforce Chrome Extension
This is the most amazing Salesforce Chrome Extension
Wat is Amazing Salesforce Chrome Extension?
Amazing Salesforce Chrome Extension is een Chrome-extensie ontwikkeld door Enrico Murru, en de belangrijkste functie is "This is the most amazing Salesforce Chrome Extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Amazing Salesforce Chrome Extension
Download Amazing Salesforce Chrome Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Amazing Salesforce Chrome Extension |
ID | mmkccibgnkbmlhgddpnipfciejgfdaoc |
Officiële URL | https://chromewebstore.google.com/detail/amazing-salesforce-chrome/mmkccibgnkbmlhgddpnipfciejgfdaoc |
Beschrijving | This is the most amazing Salesforce Chrome Extension |
Bestandsgrootte | 159 KB |
Aantal Installaties | 85 |
Huidige Versie | 0.0.5 |
Laatst Bijgewerkt | 2017-11-15 |
Publicatiedatum | 2017-11-15 |
Ontwikkelaar | Enrico Murru |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://enree.co |
Help Pagina-URL | https://enree.co |
URL van de Privacybeleid Pagina | https://organizer.solutions/privacypolicy.html |
Ondersteunde Talen | 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" } |