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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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
        }
    ]
}