unpkg Link

Adds a link to unpkg.com for packages on npmjs.org

Wat is unpkg Link?

unpkg Link is een Chrome-extensie ontwikkeld door Andrew Levine, en de belangrijkste functie is "Adds a link to unpkg.com for packages on npmjs.org".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie unpkg Link

Download unpkg Link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Want to explore the actual code published for an npm package, without installing it locally? The unpkg.com service makes this a breeze.

This extension simply adds a link to packages on npmjs.org, with a quick link to view the code on unpkg.com.

Credits go to both the npm team, and Michael Jackson for npmcdn.                    

Basisinformatie over de Extensie

Naam unpkg Link unpkg Link
ID edafhclpiklopbghoeoefdajoadokdcb
Officiële URL https://chrome.google.com/webstore/detail/unpkg-link/edafhclpiklopbghoeoefdajoadokdcb
Beschrijving Adds a link to unpkg.com for packages on npmjs.org
Bestandsgrootte 3.25 KB
Aantal Installaties 119
Huidige Versie 2.0.0
Laatst Bijgewerkt 2018-05-01
Publicatiedatum 2018-05-01
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Andrew Levine
Betalingswijze free
Extensiewebsite https://github.com/DrewML/npmcdn-link
Help Pagina-URL https://github.com/DrewML/npmcdn-link/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "unpkg Link",
    "version": "2.0.0",
    "description": "Adds a link to unpkg.com for packages on npmjs.org",
    "homepage_url": "https:\/\/github.com\/DrewML\/unpkg-link",
    "manifest_version": 2,
    "minimum_chrome_version": "49",
    "permissions": [
        "https:\/\/www.npmjs.com\/package\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/www.npmjs.com\/package\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ]
}