Devsheet
Search and create code snippets
什么是Devsheet?
Devsheet是由https://devsheet.com开发的Chrome扩展程序,该扩展的主要功能是“Search and create code snippets”。
扩展截图
下载Devsheet扩展crx文件
下载Devsheet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.
扩展基本信息
名称 | |
ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
官方URL | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
简介 | Search and create code snippets |
文件大小 | 173 KB |
安装次数 | 168 |
当前版本 | 1.3 |
更新时间 | 2020-11-11 |
上架时间 | 2019-07-20 |
评分 | 4.00/5 共4次评分 |
开发者 | https://devsheet.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://devsheet.com |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devsheet", "manifest_version": 2, "description": "Search and create code snippets", "version": "1.3", "browser_action": { "default_icon": "icon.png", "default_title": "Devsheet", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "https:\/\/devsheet.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "lib\/prism.js", "js\/content-script.js" ], "css": [ "css\/dsStyle.css" ] } ] } |