Pluralsight

Quickly find the content you need from Pluralsight’s Skills, all within your web browser.

Pluralsight là gì?

Pluralsight là một tiện ích mở rộng Chrome được phát triển bởi Pluralsight, và tính năng chính của nó là "Quickly find the content you need from Pluralsight’s Skills, all within your web browser.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Pluralsight 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

                        Pluralsight’s Google Chrome extension allows you to quickly find the content you need from Pluralsight’s Skills, all within your web browser.

With our extension, you can use Pluralsight’s search from within Google Chrome to get immediate access to content covering the most relevant and in-demand technologies, including cloud, mobile, security, IT, and data. You’ll get search results from our content library, including video courses, video course clips, paths, interactive courses, projects, and guides.

Our extension also surfaces direct links to Pluralsight content search from relevant sites like Google and StackOverflow search results.                    

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

Tên Pluralsight Pluralsight
ID ciiahnddlacbfcmcchnhfnoklmacglfh
URL Chính Thức https://chrome.google.com/webstore/detail/pluralsight/ciiahnddlacbfcmcchnhfnoklmacglfh
Mô tả Quickly find the content you need from Pluralsight’s Skills, all within your web browser.
Kích Thước Tệp 54.37 KB
Số Lần Cài Đặt 14,136
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2020-08-05
Ngày Phát Hành 2020-05-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Pluralsight
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pluralsight.com
URL Trang Trợ Giúp https://help.pluralsight.com/help
URL Trang Chính Sách Bảo Mật https://www.pluralsight.com/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pluralsight",
    "description": "Quickly find the content you need from Pluralsight\u2019s Skills, all within your web browser.",
    "version": "1.8",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.pluralsight.com\/*",
                "https:\/\/pluralsight.com\/*",
                "https:\/\/www.pluralsight.com\/*",
                "*:\/\/www.google.com\/*",
                "*:\/\/google.com\/*",
                "*:\/\/stackoverflow.com\/questions\/*",
                "https:\/\/dev-portal.pluralsight.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ]
}