Feedback Hub Redirector

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

Wat is Feedback Hub Redirector?

Feedback Hub Redirector is een Chrome-extensie ontwikkeld door Mehedi, en de belangrijkste functie is "Lines of code that redirects Feedback Hub announcements to the unofficial web app".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Feedback Hub Redirector

Download Feedback Hub Redirector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Lines of code that redirects Feedback Hub announcements to the unofficial web app fbl.fun. Automatically redirects the official Feedback Hub links to fbl.fun so that you don't need to manually open 'em up.                    

Basisinformatie over de Extensie

Naam Feedback Hub Redirector Feedback Hub Redirector
ID dhilpifnjihljhiicnoiogekeiogghpl
Officiële URL https://chromewebstore.google.com/detail/feedback-hub-redirector/dhilpifnjihljhiicnoiogekeiogghpl
Beschrijving Lines of code that redirects Feedback Hub announcements to the unofficial web app
Bestandsgrootte 13.91 KB
Aantal Installaties 19
Huidige Versie 1.0.1
Laatst Bijgewerkt 2017-08-23
Publicatiedatum 2017-08-23
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Mehedi
Betalingswijze free
Extensiewebsite http://fbl.fun
Ondersteunde Talen en
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"
            ]
        }
    ]
}