Kudani Snipper
Bookmark URLs and Feeds and send them to KudaniCloud
Qu'est-ce que Kudani Snipper ?
Kudani Snipper est une extension Chrome développée par https://www.kudani.com, et sa fonction principale est "Bookmark URLs and Feeds and send them to KudaniCloud".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Kudani Snipper
Téléchargez les fichiers d'extension Kudani Snipper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Kudani Snipper |
ID | honhcoadmdmlnlepogdkgfgedhhcdjbe |
URL Officiel | https://chromewebstore.google.com/detail/kudani-snipper/honhcoadmdmlnlepogdkgfgedhhcdjbe |
Description | Bookmark URLs and Feeds and send them to KudaniCloud |
Taille du Fichier | 102 KB |
Nombre d'Installations | 426 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2018-01-03 |
Date de Publication | 2018-01-03 |
Évaluation | 4.86/5 Total 7 Évaluations |
Développeur | https://www.kudani.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.kudani.com |
URL de la Page de Politique de Confidentialité | http://www.headlinr.com/privacy |
Langues Prises en Charge | 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 } ] } |