Pluralsight

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

Cos'è Pluralsight?

Pluralsight è un'estensione di Chrome sviluppata da Pluralsight, e la sua funzione principale è "Quickly find the content you need from Pluralsight’s Skills, all within your web browser.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Pluralsight

Scarica i file di estensione Pluralsight in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pluralsight Pluralsight
ID ciiahnddlacbfcmcchnhfnoklmacglfh
URL Ufficiale https://chrome.google.com/webstore/detail/pluralsight/ciiahnddlacbfcmcchnhfnoklmacglfh
Descrizione Quickly find the content you need from Pluralsight’s Skills, all within your web browser.
Dimensione del File 54.37 KB
Conteggio Installazioni 14,136
Versione Corrente 1.8
Ultimo Aggiornamento 2020-08-05
Data di Pubblicazione 2020-05-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Pluralsight
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://pluralsight.com
URL della Pagina di Aiuto https://help.pluralsight.com/help
URL della Pagina della Politica sulla Privacy https://www.pluralsight.com/privacy
Lingue Supportate 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"
    ]
}