NBA Reactions

Replaces emojis in Facebook Reactions with NBA player pictures.

What is NBA Reactions?

NBA Reactions is a Chrome extension developed by Armin Hadziosmanovic, and its main feature is "Replaces emojis in Facebook Reactions with NBA player pictures.".

Extension Screenshots

screenshot

Download NBA Reactions Extension CRX File

Download NBA Reactions extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name NBA Reactions NBA Reactions
ID okabifmpjkicccpjheanimalipepdape
Official URL https://chromewebstore.google.com/detail/nba-reactions/okabifmpjkicccpjheanimalipepdape
Description Replaces emojis in Facebook Reactions with NBA player pictures.
File Size 573 KB
Installation Count 37
Current Version 0.0.1
Last Updated 2016-02-28
Publish Date 2016-02-28
Rating 5.00/5 Total 4 Ratings
Developer Armin Hadziosmanovic
Payment Type free
Supported Languages 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"
    ]
}