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 |
| 公式URL | 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"
}
]
} | |