Resoomer

Resoomer

Go to the main ideas in your articles online, summarize them in 1 Click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Resoomer",
  "version": "2",
  "manifest_version": 2,
  "description": "Go to the main ideas in your articles online, summarize them in 1 Click",
  "browser_action": {
    "default_title": "Summarize the article",
    "default_popup": "html/browser_popup.html"
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/lib/jquery.min.js",
      "js/background.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.resoomer.com/*"
      ],
      "js": [
        "js/lib/jquery.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*",
    "fonts/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.resoomer.com/*"
    ]
  }
}