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"
}
} | |