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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |