NBA Reactions

Replaces emojis in Facebook Reactions with NBA player pictures.

Was ist NBA Reactions?

NBA Reactions ist eine Chrome-Erweiterung, die von Armin Hadziosmanovic entwickelt wurde, und ihr Hauptmerkmal ist "Replaces emojis in Facebook Reactions with NBA player pictures.".

Erweiterungsscreenshots

screenshot

NBA Reactions-Erweiterungs-CRX-Datei herunterladen

Laden Sie NBA Reactions-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Facebook reactions with NBA player faces
Replaces new Facebook reactions with NBA Player faces. You're welcome.

Thanks to the article "How to build your own extension modifying Facebook Reactions":
https://francoisgrante.com/articles/customize-facebook-reactions/

Thanks to "La Giornata Tipo" for the idea.
https://www.facebook.com/LaGiornataTipo/                    

Grundlegende Informationen zur Erweiterung

Name NBA Reactions NBA Reactions
ID okabifmpjkicccpjheanimalipepdape
Offizielle URL https://chromewebstore.google.com/detail/nba-reactions/okabifmpjkicccpjheanimalipepdape
Beschreibung Replaces emojis in Facebook Reactions with NBA player pictures.
Dateigröße 573 KB
Installationsanzahl 37
Aktuelle Version 0.0.1
Letztes Update 2016-02-28
Veröffentlichungsdatum 2016-02-28
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Armin Hadziosmanovic
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NBA Reactions",
    "short_name": "NBA Reactions",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Replaces emojis in Facebook Reactions with NBA player pictures.",
    "homepage_url": "https:\/\/armhadz.com",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "*:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "css": [
                "content_script\/replace-reactions.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ]
}