Save to Kive

Save to Kive

Use Save to Kive to save things from the web directly to Kive

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Save to Kive",
  "name": "Save to Kive",
  "icons": {
    "16": "assets/kive_logo_whiteonblack_16.png",
    "32": "assets/kive_logo_whiteonblack_32.png",
    "48": "assets/kive_logo_whiteonblack_48.png",
    "128": "assets/kive_logo_whiteonblack_128.jpg"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "cookies",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "libs/segment.js",
      "libs/firebase.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.kive.ai/*"
      ],
      "js": [
        "content.js",
        "toggleIcon.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "picker.html",
    "notification.html",
    "assets/kive_logo_whiteonblack_128.jpg"
  ],
  "description": "Use Save to Kive to save things from the web directly to Kive",
  "manifest_version": 2,
  "version": "1.0.6",
  "browser_action": {
    "default_title": "Save to Kive",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://apis.google.com https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://cdn.mxpnl.com https://widget.intercom.io https://js.intercomcdn.com; object-src 'self'",
  "oauth2": {
    "client_id": "979623825790-kj05mcd084t96lk81ncnfo1eiid8uij1.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}