Kudani Snipper

Bookmark URLs and Feeds and send them to KudaniCloud

Kudani Snipper là gì?

Kudani Snipper là một tiện ích mở rộng Chrome được phát triển bởi https://www.kudani.com, và tính năng chính của nó là "Bookmark URLs and Feeds and send them to KudaniCloud".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Kudani Snipper

Tải xuống các tệp mở rộng Kudani Snipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Kudani Snipper Kudani Snipper
ID honhcoadmdmlnlepogdkgfgedhhcdjbe
URL Chính Thức https://chromewebstore.google.com/detail/kudani-snipper/honhcoadmdmlnlepogdkgfgedhhcdjbe
Mô tả Bookmark URLs and Feeds and send them to KudaniCloud
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 426
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2018-01-03
Ngày Phát Hành 2018-01-03
Đánh Giá 4.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://www.kudani.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.kudani.com
URL Trang Chính Sách Bảo Mật http://www.headlinr.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}