Clippings - Save to project

Clippings - Save to project

Save and buy any product from around the web with Clippings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "version": "0.3.3",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "author": "Clippings Ltd.",
  "icons": {
    "16": "images/clippings-icon-16.png",
    "32": "images/clippings-icon-32.png",
    "128": "images/clippings-icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/clippings-icon-16.png",
      "24": "images/clippings-icon-24.png",
      "32": "images/clippings-icon-32.png"
    },
    "default_title": "Save to project - Clippings",
    "default_popup": "info.html"
  },
  "permissions": [
    "https://clippings.com/api/*",
    "contextMenus",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://clippings.com/*",
        "https://*.clippings.com/*",
        "https://*.staging.clippings.com/*",
        "https://clippings.dev/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "modal.html",
    "success.html",
    "modal.js",
    "success.js",
    "bootstrap.css"
  ],
  "minimum_chrome_version": "62"
}