GitHub Reactions

GitHub Reactions

GitHub Reactions allows you to extract reactions from issues to better understand which issues are the most popular

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GitHub Reactions",
  "version": "0.0.3",
  "description": "GitHub Reactions allows you to extract reactions from issues to better understand which issues are the most popular",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "512": "img/icon512.png"
  },
  "action": {},
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "webNavigation"
  ],
  "host_permissions": [
    "https://github.com/*",
    "https://api.github.com/*"
  ]
}