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 |
| 官方網址 | 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:\/\/*\/*"
]
}
]
} | |