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
官方網址 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
        }
    ]
}