Citation Saver

Citation Saver

Extension that highlights what you had previously highlighted on a page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Citation Saver",
  "version": "1.0.5",
  "description": "Extension that highlights what you had previously highlighted on a page.",
  "author": "John Leung",
  "permissions": [
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "web_accessible_resources": [
    "images/get_started48.png",
    "contentScripts/vendor/jquery.js",
    "contentScripts/processSelection.js",
    "contentScripts/styles.css"
  ],
  "manifest_version": 2
}