Kudani Snipper
Bookmark URLs and Feeds and send them to KudaniCloud
Was ist Kudani Snipper?
Kudani Snipper ist eine Chrome-Erweiterung, die von https://www.kudani.com entwickelt wurde, und ihr Hauptmerkmal ist "Bookmark URLs and Feeds and send them to KudaniCloud".
Erweiterungsscreenshots
Kudani Snipper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Kudani Snipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Kudani Snipper |
ID | honhcoadmdmlnlepogdkgfgedhhcdjbe |
Offizielle URL | https://chromewebstore.google.com/detail/kudani-snipper/honhcoadmdmlnlepogdkgfgedhhcdjbe |
Beschreibung | Bookmark URLs and Feeds and send them to KudaniCloud |
Dateigröße | 102 KB |
Installationsanzahl | 426 |
Aktuelle Version | 1.6 |
Letztes Update | 2018-01-03 |
Veröffentlichungsdatum | 2018-01-03 |
Bewertung | 4.86/5 Insgesamt 7 Bewertungen |
Entwickler | https://www.kudani.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://www.kudani.com |
URL der Datenschutzrichtlinien-Seite | http://www.headlinr.com/privacy |
Unterstützte Sprachen | 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 } ] } |