Evernote Web Clipper

Evernote Web Clipper

Use the Evernote extension to save things you see on the web into your Evernote account.

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_ExtensionName__",
  "description": "__MSG_ExtensionDescription__",
  "author": "Evernote",
  "version": "7.35.0",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "background": {
    "service_worker": "ServiceWorkerExtension.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "js": [
        "commons.js",
        "content.js"
      ],
      "css": [
        "content.css",
        "SkitchStyles.css",
        "TopFrames.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "all_frames": true,
      "js": [
        "ContentScriptFrames.js"
      ]
    }
  ],
  "action": {
    "default_title": "__MSG_BrowserActionTitle__",
    "default_icon": {
      "38": "res/icon.png"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "cookies",
    "contextMenus",
    "storage",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "consent.html",
        "consentStyles.css",
        "ContentFrame.html",
        "OptionsFrame.html",
        "SimSearchFrame.html",
        "PdfPageButtonFrame.html",
        "content.css",
        "ClearlyReformatStyles.css",
        "ClearlyCustomStyles.css",
        "PreloaderStyles.css",
        "SkitchStyles.css",
        "HighlightStyles.css",
        "BookmarkStyles.css",
        "ScreenshotPreviewerManagerBox.css",
        "ContentScriptFrames.js",
        "res/snap.wav",
        "res/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "GmailInjectedScript.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "incognito": "split",
  "options_page": "OptionsFrame.html",
  "options_ui": {
    "page": "OptionsFrame.html#newStylePage"
  },
  "icons": {
    "38": "res/icon.png",
    "128": "res/icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}