AIsummarizer

AIsummarizer

The software that summarizes your texts with one click powered by AIsummarizer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AIsummarizer",
  "description": "The software that summarizes your texts with one click powered by AIsummarizer ",
  "homepage_url": "http://aisummarizer.com",
  "version": "1.2",
  "icons": {
    "16": "images/bird_loupe_16.png",
    "48": "images/bird_loupe_48.png",
    "128": "images/bird_loupe_128.png"
  },
  "permissions": [
    "contextMenus",
    "https://dev.aisummarizer.com/"
  ],
  "background": {
    "scripts": [
      "summariser.js",
      "src/jquery-1.9.1.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://mail.google.com/*"
      ],
      "css": [
        "src/content_script.css"
      ],
      "js": [
        "src/jquery-1.9.1.min.js",
        "src/content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "manifest_version": 2
}