Annotation Chrome Plugin

Annotation Chrome Plugin

Extension helps to validate annotations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Annotation Chrome Plugin",
  "description": "Extension helps to validate annotations",
  "version": "3.0.0.3",
  "browser_action": {
    "default_icon": "icons/on.png",
    "default_title": "PROD PLUGIN"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.lexis360.fr/*",
        "*://*.sesameprod/sesame/*",
        "*://*.beta.lexis360.fr/*",
        "*://*.beta-legan.lexisnexis.fr/*",
        "*://*.sesamecert/sesame/*",
        "*://*.cert-sesame.lexisnexis.fr/*",
        "*://*.sesame.lexisnexis.fr/*",
        "*://*.lexis360intelligence.fr/*"
      ],
      "run_at": "document_idle",
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "fr",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "iframe.html",
    "iframe_similarity.html"
  ]
}