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”。

扩展截图

screenshot

下载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 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
电子邮箱 [email protected]
付费类型 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
        }
    ]
}