TypeScript Friendly
Annotates npm website with information about how TypeScript-friendly a package is.
What is TypeScript Friendly?
TypeScript Friendly is a Chrome extension developed by ofrobots, and its main feature is "Annotates npm website with information about how TypeScript-friendly a package is.".
Extension Screenshots
Download TypeScript Friendly Extension CRX File
Download TypeScript Friendly extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Annotates npm website with information about how TypeScript-friendly a package is. Extension Basic Information
| Name | |
| ID | bobgngeadaljeacddbgefcfhhdopmpnc |
| Official URL | https://chromewebstore.google.com/detail/typescript-friendly/bobgngeadaljeacddbgefcfhhdopmpnc |
| Description | Annotates npm website with information about how TypeScript-friendly a package is. |
| File Size | 3.73 KB |
| Installation Count | 61 |
| Current Version | 1.2 |
| Last Updated | 2018-08-07 |
| Publish Date | 2018-08-06 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | ofrobots |
| Payment Type | free |
| Extension Website | https://github.com/ofrobots/typescript-friendly |
| Supported Languages | 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\/*"
]
} | |