Where's That Paper?

Where's That Paper?

Automatically adds viewed academic papers to your favorites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Where's That Paper?",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "Automatically adds viewed academic papers to your favorites.",
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/jquery/jquery.js",
      "src/bg/bibtexParser.js",
      "src/bg/scrapers.js",
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "src/bg/popup.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "bookmarks",
    "tabs"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  }
}