Amazing Salesforce Chrome Extension
This is the most amazing Salesforce Chrome Extension
什么是Amazing Salesforce Chrome Extension?
Amazing Salesforce Chrome Extension是由Enrico Murru开发的Chrome扩展程序,该扩展的主要功能是“This is the most amazing Salesforce Chrome Extension”。
扩展截图
下载Amazing Salesforce Chrome Extension扩展crx文件
下载Amazing Salesforce Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } |