Kudani Snipper

Bookmark URLs and Feeds and send them to KudaniCloud

What is Kudani Snipper?

Kudani Snipper is a Chrome extension developed by https://www.kudani.com, and its main feature is "Bookmark URLs and Feeds and send them to KudaniCloud".

Extension Screenshots

screenshot

Download Kudani Snipper Extension CRX File

Download Kudani Snipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Kudani Snipper Kudani Snipper
ID honhcoadmdmlnlepogdkgfgedhhcdjbe
Official URL https://chromewebstore.google.com/detail/kudani-snipper/honhcoadmdmlnlepogdkgfgedhhcdjbe
Description Bookmark URLs and Feeds and send them to KudaniCloud
File Size 102 KB
Installation Count 426
Current Version 1.6
Last Updated 2018-01-03
Publish Date 2018-01-03
Rating 4.86/5 Total 7 Ratings
Developer https://www.kudani.com
Email [email protected]
Payment Type free
Extension Website http://www.kudani.com
Privacy Policy Page URL http://www.headlinr.com/privacy
Supported Languages 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
        }
    ]
}