Unmark
Unmark's Chrome extension for saving your marks.
什麼是Unmark?
Unmark是由https://unmark.it開發的Chrome擴展程式,該擴展的主要功能是“Unmark's Chrome extension for saving your marks.”。
擴展截圖
下載Unmark擴展crx文件
下載Unmark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The Unmark Chrome extension allows you to easily save pages to your Unmark account.
You can do the following:
- Right click on any page to quickly save it to your account behind-the-scenes
- Click the extension icon provided to save/update the page with more details
- Archive, restore and delete the page from your account using the extension icon
- Search your saved marks from the omnibox (Type unmark then your search). Search is restricted to paid accounts only.
- Open source! Fork it on GitHub: https://github.com/plainmade/unmark-chrome 擴展基本資訊
| 名稱 | |
| ID | cdhnljlbeehjgddokagghpfgahhlifch |
| 官方網址 | https://chromewebstore.google.com/detail/unmark/cdhnljlbeehjgddokagghpfgahhlifch |
| 簡介 | Unmark's Chrome extension for saving your marks. |
| 檔案大小 | 81.95 KB |
| 安裝次數 | 509 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2014-04-02 |
| 上架時間 | 2014-04-02 |
| 評分 | 3.93/5 共 15 次評分 |
| 開發者 | https://unmark.it |
| 付費類型 | free |
| 擴展官網 | https://unmark.it |
| 說明頁面URL | http://help.unmark.it |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Unmark",
"description": "Unmark's Chrome extension for saving your marks.",
"version": "1.0.1",
"homepage_url": "https:\/\/unmark.it",
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"permissions": [
"tabs",
"contextMenus",
"*:\/\/unmark.it\/"
],
"omnibox": {
"keyword": "unmark"
},
"background": {
"scripts": [
"js\/third_party\/jquery.js",
"js\/unmark\/base.js",
"js\/unmark\/omnibox.js",
"js\/unmark\/contexts.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
},
"default_title": "Save to Unmark",
"default_popup": "unmark.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/unmark\/content.js"
],
"all_frames": true,
"run_at": "document_end"
}
]
} | |