Atom.io — Image Fixer

Atom.io — Image Fixer

Just a few lines of javascript to fix all those broken image links on https://atom.io

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Atom.io — Image Fixer",
  "description": "Just a few lines of javascript to fix all those broken image links on https://atom.io",
  "author": "Neel Yadav",
  "homepage_url": "https://github.com/nlydv/atom-io-imgfix",
  "version": "2.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_title": "Atom.io Image Fix",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "19": "icons/icon19.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "host_permissions": [
    "https://atom.io/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://atom.io/*"
      ],
      "run_at": "document_idle",
      "js": [
        "js/content.js"
      ]
    }
  ]
}