Load More Extension

Load More Extension

load more! load more! load more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Load More Extension",
  "description": "load more! load more! load more!",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*/issues/*",
        "https://github.com/*/*/pull/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "views/options.html",
    "open_in_tab": false
  },
  "commands": {
    "load-more": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "load more! load more! load more!"
    }
  },
  "host_permissions": [
    "https://github.com/"
  ],
  "permissions": [
    "activeTab",
    "notifications",
    "webRequest",
    "storage"
  ],
  "icons": {
    "16": "assets/icons/load_more_16.png",
    "48": "assets/icons/load_more_48.png",
    "128": "assets/icons/load_more_128.png"
  }
}