Apollo Phoenix
Enables Phoenix's look and feel on Salesforce Lightning Web Components
Apollo Phoenix란 무엇입니까?
Apollo Phoenix은(는) Apollo Team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables Phoenix's look and feel on Salesforce Lightning Web Components"입니다.
확장 프로그램 스크린샷
Apollo Phoenix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension to test Apollo Gemini Project Phoenix styles applied to the Salesforce Lightning Design System components. This is only to be used for testing purposes. This is not an official Phoenix release.
확장 프로그램 기본 정보
이름 | Apollo Phoenix |
ID | ikhebgogldjgafilpincnfpmlfojlhgj |
공식 URL | https://chromewebstore.google.com/detail/apollo-phoenix/ikhebgogldjgafilpincnfpmlfojlhgj |
설명 | Enables Phoenix's look and feel on Salesforce Lightning Web Components |
파일 크기 | 3.69 MB |
설치 횟수 | 27 |
현재 버전 | 2.3.0 |
최근 업데이트 | 2023-11-23 |
출시 날짜 | 2020-10-14 |
개발자 | Apollo Team |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Apollo Phoenix", "version": "2.3.0", "default_locale": "en", "description": "Enables Phoenix's look and feel on Salesforce Lightning Web Components", "icons": { "16": ".\/images\/icons\/managementPage\/16.png", "32": ".\/images\/icons\/managementPage\/32.png", "48": ".\/images\/icons\/managementPage\/48.png", "128": ".\/images\/icons\/managementPage\/128.png" }, "action": { "default_popup": "pages\/popup.html", "default_title": "__MSG_tooltip__", "default_icon": { "16": ".\/images\/icons\/toolbar\/16.png", "32": ".\/images\/icons\/toolbar\/32.png", "48": ".\/images\/icons\/toolbar\/48.png", "128": ".\/images\/icons\/toolbar\/128.png" } }, "author": "Gemini Team", "background": { "scripts": [ ".\/js\/background.js" ], "persistent": false }, "commands": { "write-your-custom-css-text": { "suggested_key": { "default": "Alt+Shift+U", "mac": "Alt+Shift+U" }, "description": "__MSG_writeYourCustomCssText__" }, "toggle-apollo-phoenix": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "__MSG_commandToggle__" }, "_execute_page_action": { "suggested_key": { "default": "Alt+U", "mac": "Alt+U" }, "description": "__MSG_commandOpen__" } }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.cloudfront.net\/*", "https:\/\/react.lightningdesignsystem.com\/*" ], "run_at": "document_idle", "js": [ ".\/js\/contentScript.js" ], "all_frames": true }, { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.cloudfront.net\/*", "https:\/\/react.lightningdesignsystem.com\/*" ], "run_at": "document_idle", "js": [ ".\/supportingJS\/sass.sync.js" ], "all_frames": false } ], "options_page": "pages\/options.html", "permissions": [ "activeTab", "storage", "contextMenus" ] } |