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文件
下载Apollo Phoenix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } |