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 |
官方網址 | 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" } |