GitHub Macros

GitHub Macros

Allow the developer to easily add images and gifs to comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub Macros",
  "description": "Allow the developer to easily add images and gifs to comments",
  "version": "1.0.7",
  "version_name": "1.0.7",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "/img/icons/icon.png"
    }
  },
  "icons": {
    "128": "/img/icons/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/icons/*.png",
        "font/*.woff2"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/jBox.all.min.js",
        "content.js"
      ],
      "css": [
        "css/css.css",
        "css/jBox.all.min.css"
      ]
    }
  ]
}