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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}