Salesforce Trailhead Quiz Extractor

Show quiz and options in plain text format in a Salesforce Trailhead unit

Salesforce Trailhead Quiz Extractor là gì?

Salesforce Trailhead Quiz Extractor là một tiện ích mở rộng Chrome được phát triển bởi Shun Kosaka, và tính năng chính của nó là "Show quiz and options in plain text format in a Salesforce Trailhead unit".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Trailhead Quiz Extractor

Tải xuống các tệp mở rộng Salesforce Trailhead Quiz Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Trailhead Quiz Extractor Salesforce Trailhead Quiz Extractor
ID jjnkbikhfkdfjbgleofnnelcgclcndln
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-trailhead-quiz/jjnkbikhfkdfjbgleofnnelcgclcndln
Mô tả Show quiz and options in plain text format in a Salesforce Trailhead unit
Kích Thước Tệp 114 KB
Số Lần Cài Đặt 133
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2018-11-14
Ngày Phát Hành 2018-11-14
Nhà Phát Triển Shun Kosaka
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/shunkosa/trailhead-quiz-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}