Feedback Hub Redirector

Feedback Hub Redirector

Lines of code that redirects Feedback Hub announcements to the unofficial web app

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Feedback Hub Redirector",
  "version": "1.0.1",
  "author": "Mehedi Hassan",
  "manifest_version": 2,
  "description": "Lines of code that redirects Feedback Hub announcements to the unofficial web app",
  "homepage_url": "https://twitter.com/mehedih_",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "https://insider.windows.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://insider.windows.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "inject.js"
      ]
    }
  ]
}