Bib: Copy BibTex in 1 click on Google Scholar

Bib: Copy BibTex in 1 click on Google Scholar

Copy BibTex from Google Scholar result page with 1 click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bib: Copy BibTex in 1 click on Google Scholar",
  "version": "0.0.0.7",
  "description": "Copy BibTex from Google Scholar result page with 1 click!",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://scholar.google.com/*",
        "https://scholar.google.de/*",
        "https://scholar.googleusercontent.com/scholar.bib?*",
        "https://scholar.googleusercontent.de/scholar.bib?*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "style.css"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/bib16.png",
      "32": "images/bib32.png",
      "48": "images/bib48.png",
      "128": "images/bib128.png"
    }
  },
  "icons": {
    "16": "images/bib16.png",
    "32": "images/bib32.png",
    "48": "images/bib48.png",
    "128": "images/bib128.png"
  },
  "manifest_version": 2
}