Sentitude - Sentiment Analysis

Sentitude - Sentiment Analysis

Get sentiment, pleasantness, and attention values for any webpage or selection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sentitude - Sentiment Analysis",
  "short_name": "Sentitude",
  "version": "1.1",
  "description": "Get sentiment, pleasantness, and attention values for any webpage or selection",
  "author": "Christian Broms",
  "web_accessible_resources": [
    "extension-information.json"
  ],
  "background": {
    "scripts": [
      "scripts/background-load-objects.js",
      "scripts/porter-stemmer.js",
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/injected/content.js"
      ],
      "css": [
        "scripts/injected/content.css"
      ]
    }
  ],
  "options_page": "pages/options.html",
  "browser_action": {
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "128": "assets/icon128.png"
  },
  "commands": {
    "analyze-selected-text": {
      "suggested_key": {
        "default": "Ctrl+Shift+A",
        "mac": "Command+Shift+A"
      },
      "description": "Get sentiment of selected text"
    }
  },
  "manifest_version": 2
}