TypeScript Friendly

Annotates npm website with information about how TypeScript-friendly a package is.

Vad är TypeScript Friendly?

TypeScript Friendly är en Chrome-tillägg utvecklad av ofrobots, och dess huvudfunktion är "Annotates npm website with information about how TypeScript-friendly a package is.".

Tilläggsskärmbilder

screenshot

Ladda ner TypeScript Friendly-förlängningens CRX-fil

Ladda ner TypeScript Friendly-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Annotates npm website with information about how TypeScript-friendly a package is.                    

Grundläggande Information om Tillägg

Namn TypeScript Friendly TypeScript Friendly
ID bobgngeadaljeacddbgefcfhhdopmpnc
Officiell webbadress https://chromewebstore.google.com/detail/typescript-friendly/bobgngeadaljeacddbgefcfhhdopmpnc
Beskrivning Annotates npm website with information about how TypeScript-friendly a package is.
Filstorlek 3.73 KB
Antal Installationer 61
Aktuell Version 1.2
Senast Uppdaterad 2018-08-07
Publiceringsdatum 2018-08-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare ofrobots
Betalningssätt free
Tilläggswebbplats https://github.com/ofrobots/typescript-friendly
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TypeScript Friendly",
    "description": "Annotates npm website with information about how TypeScript-friendly a package is.",
    "version": "1.2",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.npmjs.com\/package\/*"
            ],
            "js": [
                "npm.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/registry.npmjs.org\/*",
        "https:\/\/registry.npmjs.com\/*",
        "https:\/\/www.npmjs.com\/*"
    ]
}