Kudani Snipper

Kudani Snipper

Bookmark URLs and Feeds and send them to KudaniCloud

Merlin
Additional files are visible only to premium users

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
    }
  ]
}