Kudani Snipper
Bookmark URLs and Feeds and send them to KudaniCloud
Kudani Snipper क्या है?
Kudani Snipper https://www.kudani.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark URLs and Feeds and send them to KudaniCloud"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Kudani Snipper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } ] } |