Dripmarks
A bookmark tagging tool powerd by the Dropbox API and Readability
什么是Dripmarks?
Dripmarks是由apphacker开发的Chrome扩展程序,该扩展的主要功能是“A bookmark tagging tool powerd by the Dropbox API and Readability”。
扩展截图
下载Dripmarks扩展crx文件
下载Dripmarks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | oeibaijncimbhaodhikifokafmjpgjkd |
官方URL | https://chrome.google.com/webstore/detail/dripmarks/oeibaijncimbhaodhikifokafmjpgjkd |
简介 | A bookmark tagging tool powerd by the Dropbox API and Readability |
文件大小 | 408 KB |
安装次数 | 14 |
当前版本 | 1.6.1 |
更新时间 | 2014-03-02 |
上架时间 | 2014-03-02 |
评分 | 5.00/5 共1次评分 |
开发者 | apphacker |
付费类型 | free |
扩展官网 | https://github.com/btipling/dripmarks |
支持的语言 | 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" } } |