Kudani Snipper
Bookmark URLs and Feeds and send them to KudaniCloud
Kudani Snipperとは何ですか?
Kudani Snipperはhttps://www.kudani.comによって開発されたChromeの拡張機能で、その主な機能は「Bookmark URLs and Feeds and send them to KudaniCloud」です。
拡張機能のスクリーンショット
Kudani Snipper拡張機能のCRXファイルをダウンロード
Kudani Snipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Kudani Snipper is a browser extension that enables you to capture website addresses and RSS feeds where ever you are on the web. Saving them is easy. Simply select which folder to store the item, so when you next login to KudaniCloud - the saved items will be ready for you.
拡張機能の基本情報
名前 | Kudani Snipper |
ID | honhcoadmdmlnlepogdkgfgedhhcdjbe |
公式URL | https://chromewebstore.google.com/detail/kudani-snipper/honhcoadmdmlnlepogdkgfgedhhcdjbe |
説明 | Bookmark URLs and Feeds and send them to KudaniCloud |
ファイルサイズ | 102 KB |
インストール数 | 426 |
現在のバージョン | 1.6 |
最終更新日 | 2018-01-03 |
公開日 | 2018-01-03 |
評価 | 4.86/5 合計 7 レビュー |
開発者 | https://www.kudani.com |
Eメール | info@pageonetraffic.co.uk |
支払い方法 | free |
拡張機能のウェブサイト | http://www.kudani.com |
プライバシーポリシーページのURL | http://www.headlinr.com/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "name": "Kudani Snipper", "description": "Bookmark URLs and Feeds and send them to KudaniCloud", "version": "1.6", "permissions": [ "cookies", "tabs", "*:\/\/*.kudani.com\/", "http:\/\/localhost\/*", "tabs" ], "icons": { "48": "assets\/icon-48.png", "128": "assets\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "assets\/icon.png", "default_title": "There's a feed in this page. Open Kudani Snipper to save it!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |