Dripmarks
A bookmark tagging tool powerd by the Dropbox API and Readability
Dripmarks là gì?
Dripmarks là một tiện ích mở rộng Chrome được phát triển bởi apphacker, và tính năng chính của nó là "A bookmark tagging tool powerd by the Dropbox API and Readability".
Ả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 Dripmarks
Tải xuống các tệp mở rộng Dripmarks 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
Dripmarks is a bookmarking tool powered by the Dropbox API and the Readability API. Unlike Instapaper and Pocket, you own your own data with your own Dropbox account. Differences from Instapaper and Pocket: * You own and control the data. Totally private. Only you and Dropbox can see your bookmarks. * Only a chrome extension for now, planning on adding an app for Android, and if that works out maybe for other platforms and browsers in the future. * Always free and open source. I finally fixed the oauth problem, sorry it took so long.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | oeibaijncimbhaodhikifokafmjpgjkd |
URL Chính Thức | https://chrome.google.com/webstore/detail/dripmarks/oeibaijncimbhaodhikifokafmjpgjkd |
Mô tả | A bookmark tagging tool powerd by the Dropbox API and Readability |
Kích Thước Tệp | 408 KB |
Số Lần Cài Đặt | 14 |
Phiên Bản Hiện Tại | 1.6.1 |
Cập Nhật Lần Cuối | 2014-03-02 |
Ngày Phát Hành | 2014-03-02 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | apphacker |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/btipling/dripmarks |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dripmarks", "description": "A bookmark tagging tool powerd by the Dropbox API and Readability", "version": "1.6.1", "permissions": [ "tabs", "storage", "https:\/\/readability.com\/*", "https:\/\/*.dropbox.com\/*" ], "web_accessible_resources": [ "chrome_oauth_receiver.html" ], "content_security_policy": "script-src 'self' https:\/\/www.dropbox.com; object-src 'self'", "background": { "page": "html\/background.html", "persistent": true }, "browser_action": { "default_icon": { "19": "images\/logo-19.png", "38": "images\/logo-38.png" }, "default_title": "Dripmarks", "default_popup": "html\/popup.html" }, "icons": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } } |