Kudani Snipper

Bookmark URLs and Feeds and send them to KudaniCloud

Что такое Kudani Snipper?

Kudani Snipper - это расширение Chrome, разработанное https://www.kudani.com, и его основная функция - "Bookmark URLs and Feeds and send them to KudaniCloud".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Kudani Snipper

Скачайте файлы расширений 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
        }
    ]
}