Salesforce Trailhead Quiz Extractor
Show quiz and options in plain text format in a Salesforce Trailhead unit
什么是Salesforce Trailhead Quiz Extractor?
Salesforce Trailhead Quiz Extractor是由Shun Kosaka开发的Chrome扩展程序,该扩展的主要功能是“Show quiz and options in plain text format in a Salesforce Trailhead unit”。
扩展截图
下载Salesforce Trailhead Quiz Extractor扩展crx文件
下载Salesforce Trailhead Quiz Extractor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | jjnkbikhfkdfjbgleofnnelcgclcndln |
| 官方URL | https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln |
| 简介 | Show quiz and options in plain text format in a Salesforce Trailhead unit |
| 文件大小 | 114 KB |
| 安装次数 | 133 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2018-11-14 |
| 上架时间 | 2018-11-14 |
| 开发者 | Shun Kosaka |
| 付费类型 | free |
| 扩展官网 | https://github.com/shunkosa/trailhead-quiz-chrome-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Salesforce Trailhead Quiz Extractor",
"version": "0.0.2",
"description": "Show quiz and options in plain text format in a Salesforce Trailhead unit",
"author": "Shun Kosaka",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"https:\/\/trailhead.salesforce.com\/*"
],
"page_action": {
"default_title": "Trailhead Quiz",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/trailhead.salesforce.com\/*"
],
"js": [
"jquery-2.1.0.min.js",
"content.js"
],
"run_at": "document_end"
}
]
} | |