So Hot Right Now

Highlights most viewed articles on www.nytimes.com

What is So Hot Right Now?

So Hot Right Now is a Chrome extension developed by Erik Christensen, and its main feature is "Highlights most viewed articles on www.nytimes.com".

Extension Screenshots

screenshot

Download So Hot Right Now Extension CRX File

Download So Hot Right Now 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

                        So Hot Right Now is a Chrome extension that highlights the most viewed articles on the New York Times website (www.nytimes.com). In addition to highlighting the most viewed articles, it also places a "hot" icon next to the articles shared most often on Twitter in the last day.                    

Extension Basic Information

Name So Hot Right Now So Hot Right Now
ID hhbfaeolgndjibdelcbioldnikfilkbg
Official URL https://chrome.google.com/webstore/detail/so-hot-right-now/hhbfaeolgndjibdelcbioldnikfilkbg
Description Highlights most viewed articles on www.nytimes.com
File Size 57.17 KB
Installation Count 15
Current Version 2.0.1
Last Updated 2015-09-08
Publish Date 2015-09-08
Rating 5.00/5 Total 1 Ratings
Developer Erik Christensen
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "So Hot Right Now",
    "version": "2.0.1",
    "description": "Highlights most viewed articles on www.nytimes.com",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "images\/nytimesred19.png",
            "38": "images\/nytimesred38.png"
        },
        "default_title": "So Hot Right Now"
    },
    "icons": {
        "16": "images\/nytimesred16.png",
        "48": "images\/nytimesred48.png",
        "128": "images\/nytimesred128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/www.nytimes.com\/*",
        "http:\/\/api.nytimes.com\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.nytimes.com\/*"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/hot_big.png",
        "images\/nytimesred19.png",
        "images\/nytimesred38.png"
    ]
}