Senti-Trend

Senti-Trend

This extension gathers data from URL and displays keywords with sentiment analysis.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Senti-Trend",
  "short_name": "See a website's sentiments at-a-glance.",
  "description": "This extension gathers data from URL and displays keywords with sentiment analysis.",
  "version": "3.0",
  "browser_action": {
    "default_icon": "icons/small_icon.png",
    "default_title": "Senti-Trend"
  },
  "icons": {
    "48": "icons/large_icon.png",
    "128": "icons/small_icon.png"
  },
  "background": {
    "scripts": [
      "vendors/jquery.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://access.alchemyapi.com/calls/url/URLGetRankedNamedEntities; object-src 'self'"
}