BibGuru: Free Citation Generator

BibGuru: Free Citation Generator

Generate citations in APA, MLA, Harvard, and hundreds of other citation styles directly on any website!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appTitle__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "1.0.85",
  "default_locale": "en",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*.paperpile.com/*",
    "https://*.bibguru.com/*"
  ],
  "background": {
    "service_worker": "dist/bg-wrapper.js"
  },
  "incognito": "spanning",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png"
    },
    "default_title": "__MSG_appBrowserActionTitle__"
  },
  "content_scripts": [
    {
      "matches": [
        "*://app.bibguru.com/*"
      ],
      "js": [
        "dist/cs-app.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}