WeSnipp Chrome Extension
The official WeSnipp Chrome Extension
什么是WeSnipp Chrome Extension?
WeSnipp Chrome Extension是由http://wesnipp.com开发的Chrome扩展程序,该扩展的主要功能是“The official WeSnipp Chrome Extension”。
扩展截图
下载WeSnipp Chrome Extension扩展crx文件
下载WeSnipp Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Chrome extension WeSnipp makes adding snippet simpler. When a web page contains code ('' ), a button is added next.
Just be clicked to add it to your snippets
扩展基本信息
| 名称 | |
| ID | nljdgkgnlfkedbdimeiojkcllnandmke |
| 官方URL | https://chrome.google.com/webstore/detail/wesnipp-chrome-extension/nljdgkgnlfkedbdimeiojkcllnandmke |
| 简介 | The official WeSnipp Chrome Extension |
| 文件大小 | 438 KB |
| 安装次数 | 90 |
| 当前版本 | 1.3.4 |
| 更新时间 | 2014-09-19 |
| 上架时间 | 2014-09-19 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | http://wesnipp.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "WeSnipp Chrome Extension",
"description": "The official WeSnipp Chrome Extension",
"version": "1.3.4",
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon-48.png"
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"storage",
"contextMenus",
"https:\/\/wesnipp.com\/"
],
"content_security_policy": "script-src 'self' https:\/\/wesnipp.com; object-src 'self'",
"externally_connectable": {
"matches": [
"*:\/\/*.wesnipp.com\/*"
]
},
"background": {
"persistent": false,
"scripts": [
"jquery.min.js",
"background.js",
"wesnipp.js"
]
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"wesnipp.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
]
} | |