Unmark
Unmark's Chrome extension for saving your marks.
Unmark là gì?
Unmark là một tiện ích mở rộng Chrome được phát triển bởi https://unmark.it, và tính năng chính của nó là "Unmark's Chrome extension for saving your marks.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Unmark
Tải xuống các tệp mở rộng Unmark dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Unmark |
ID | cdhnljlbeehjgddokagghpfgahhlifch |
URL Chính Thức | https://chromewebstore.google.com/detail/unmark/cdhnljlbeehjgddokagghpfgahhlifch |
Mô tả | Unmark's Chrome extension for saving your marks. |
Kích Thước Tệp | 81.95 KB |
Số Lần Cài Đặt | 509 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2014-04-02 |
Ngày Phát Hành | 2014-04-02 |
Đánh Giá | 3.93/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | https://unmark.it |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://unmark.it |
URL Trang Trợ Giúp | http://help.unmark.it |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |