Sentieo Web Clipper

Sentieo Web Clipper

This Sentieo extension helps you to use our Sentieo technology on other financial data websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sentieo Web Clipper",
  "short_name": "Web Clipper",
  "description": "This Sentieo extension helps you to use our Sentieo technology on other financial data websites.",
  "version": "1.0.13",
  "page_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon76.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "128": "images/icon128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js",
      "jquery.sentieomin.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/readability.js",
        "domFinder.js"
      ]
    },
    {
      "matches": [
        "http://*.sentieo.com/*",
        "https://*.sentieo.com/*"
      ],
      "js": [
        "js/readability.js",
        "js/ocen.js",
        "js/interact.js",
        "js/jquery.min.js",
        "js/content_script.js",
        "js/overlay.js",
        "js/colorpicker.js",
        "js/clipboard-polyfill.js"
      ],
      "css": [
        "css/colorpicker.css",
        "css/overlay.css"
      ],
      "run_at": "document_end"
    }
  ],
  "omnibox": {
    "keyword": "$"
  },
  "permissions": [
    "tabs",
    "cookies",
    "<all_urls>",
    "storage",
    "activeTab",
    "clipboardWrite",
    "declarativeContent"
  ],
  "web_accessible_resources": [
    "js/jquery.min.js",
    "js/overlay.js",
    "overlay.html"
  ]
}