Amazing Salesforce Chrome Extension
This is the most amazing Salesforce Chrome Extension
Amazing Salesforce Chrome Extension क्या है?
Amazing Salesforce Chrome Extension Enrico Murru द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is the most amazing Salesforce Chrome Extension"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Amazing Salesforce Chrome Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Amazing Salesforce Chrome Extension |
ID | mmkccibgnkbmlhgddpnipfciejgfdaoc |
आधिकारिक URL | https://chromewebstore.google.com/detail/amazing-salesforce-chrome/mmkccibgnkbmlhgddpnipfciejgfdaoc |
विवरण | This is the most amazing Salesforce Chrome Extension |
फ़ाइल का आकार | 159 KB |
स्थापना संख्या | 85 |
वर्तमान संस्करण | 0.0.5 |
अंतिम अपडेट | 2017-11-15 |
प्रकाशन तिथि | 2017-11-15 |
डेवलपर | Enrico Murru |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://enree.co |
सहायता पृष्ठ URL | https://enree.co |
गोपनीयता नीति पृष्ठ URL | https://organizer.solutions/privacypolicy.html |
समर्थित भाषाएँ | 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" } |