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 |
Eメール | [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" } |