NBA Reactions

Replaces emojis in Facebook Reactions with NBA player pictures.

Cos'è NBA Reactions?

NBA Reactions è un'estensione di Chrome sviluppata da Armin Hadziosmanovic, e la sua funzione principale è "Replaces emojis in Facebook Reactions with NBA player pictures.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NBA Reactions

Scarica i file di estensione NBA Reactions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome NBA Reactions NBA Reactions
ID okabifmpjkicccpjheanimalipepdape
URL Ufficiale https://chromewebstore.google.com/detail/nba-reactions/okabifmpjkicccpjheanimalipepdape
Descrizione Replaces emojis in Facebook Reactions with NBA player pictures.
Dimensione del File 573 KB
Conteggio Installazioni 37
Versione Corrente 0.0.1
Ultimo Aggiornamento 2016-02-28
Data di Pubblicazione 2016-02-28
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Armin Hadziosmanovic
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}