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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shun Kosaka และคุณลักษณะหลักของมันคือ "Show quiz and options in plain text format in a Salesforce Trailhead unit"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Trailhead Quiz Extractor
ดาวน์โหลดไฟล์ส่วนขยาย 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"
}
]
} | |