TypeScript Friendly
Annotates npm website with information about how TypeScript-friendly a package is.
什么是TypeScript Friendly?
TypeScript Friendly是由ofrobots开发的Chrome扩展程序,该扩展的主要功能是“Annotates npm website with information about how TypeScript-friendly a package is.”。
扩展截图
下载TypeScript Friendly扩展crx文件
下载TypeScript Friendly扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Annotates npm website with information about how TypeScript-friendly a package is. 扩展基本信息
| 名称 | |
| ID | bobgngeadaljeacddbgefcfhhdopmpnc |
| 官方URL | https://chromewebstore.google.com/detail/typescript-friendly/bobgngeadaljeacddbgefcfhhdopmpnc |
| 简介 | Annotates npm website with information about how TypeScript-friendly a package is. |
| 文件大小 | 3.73 KB |
| 安装次数 | 61 |
| 当前版本 | 1.2 |
| 更新时间 | 2018-08-07 |
| 上架时间 | 2018-08-06 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | ofrobots |
| 付费类型 | free |
| 扩展官网 | https://github.com/ofrobots/typescript-friendly |
| 支持的语言 | 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\/*"
]
} | |