WeSnipp Chrome Extension
The official WeSnipp Chrome Extension
What is WeSnipp Chrome Extension?
WeSnipp Chrome Extension is a Chrome extension developed by http://wesnipp.com, and its main feature is "The official WeSnipp Chrome Extension".
Extension Screenshots
Download WeSnipp Chrome Extension Extension CRX File
Download WeSnipp Chrome Extension 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
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
Extension Basic Information
| Name | |
| ID | nljdgkgnlfkedbdimeiojkcllnandmke |
| Official URL | https://chrome.google.com/webstore/detail/wesnipp-chrome-extension/nljdgkgnlfkedbdimeiojkcllnandmke |
| Description | The official WeSnipp Chrome Extension |
| File Size | 438 KB |
| Installation Count | 90 |
| Current Version | 1.3.4 |
| Last Updated | 2014-09-19 |
| Publish Date | 2014-09-19 |
| Rating | 5.00/5 Total 4 Ratings |
| Developer | http://wesnipp.com |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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:\/\/*\/*"
]
}
]
} | |