Get Article File Name

Get Article File Name

Generate Article File Name based on article title, authors, and year

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Get Article File Name",
  "description": "Generate Article File Name based on article title, authors, and year",
  "version": "2.0.10",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/images/gafn16.png",
    "32": "/images/gafn32.png",
    "48": "/images/gafn48.png",
    "128": "/images/gafn128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/gafn48.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}