Dynalist Companion Clipper
Clip and capture to your Dynalist.
Dynalist Companion Clipperとは何ですか?
Dynalist Companion ClipperはDynalist Inc.によって開発されたChromeの拡張機能で、その主な機能は「Clip and capture to your Dynalist.」です。
拡張機能のスクリーンショット
Dynalist Companion Clipper拡張機能のCRXファイルをダウンロード
Dynalist Companion Clipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Dynalist Companion Clipper clips the current page URL and selected text to your Dynalist inbox location. Instructions: (1) To use this extension, you need to have a Dynalist account. If you don't have one, sign up for one here: https://dynalist.io/signup (2) Set an inbox location in Dynalist. Here's how: https://help.dynalist.io/article/119-set-an-inbox-location (3) Log into Dynalist on the browser. (4) Use the extension icon to capture the current page, or use the right click menu to clip current page or selected text. Advanced usage: (1) When the capture popup is open, you can hit Ctrl+Enter to capture; (2) Customize the format of your captured text in options.
拡張機能の基本情報
名前 | Dynalist Companion Clipper |
ID | ilcnkabiejjaijmenfmfobnkplflaglb |
公式URL | https://chromewebstore.google.com/detail/dynalist-companion-clippe/ilcnkabiejjaijmenfmfobnkplflaglb |
説明 | Clip and capture to your Dynalist. |
ファイルサイズ | 187 KB |
インストール数 | 7,201 |
現在のバージョン | 0.3 |
最終更新日 | 2018-10-03 |
公開日 | 2018-10-03 |
評価 | 4.48/5 合計 23 レビュー |
開発者 | Dynalist Inc. |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://dynalist.io/ |
プライバシーポリシーページのURL | https://dynalist.io/privacy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dynalist Companion Clipper", "short_name": "DynaClipper", "description": "Clip and capture to your Dynalist.", "version": "0.3", "icons": { "48": "image\/icon48.png", "128": "image\/icon128.png" }, "browser_action": { "default_icon": "image\/icon48.png", "default_title": "Clip this page to Dynalist", "default_popup": "popup.html" }, "permissions": [ "activeTab", "contextMenus", "storage", "*:\/\/*.dynalist.io\/*" ], "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "open_in_tab": false } } |