So Hot Right Now

Highlights most viewed articles on www.nytimes.com

Qu'est-ce que So Hot Right Now ?

So Hot Right Now est une extension Chrome développée par Erik Christensen, et sa fonction principale est "Highlights most viewed articles on www.nytimes.com".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension So Hot Right Now

Téléchargez les fichiers d'extension So Hot Right Now au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom So Hot Right Now So Hot Right Now
ID hhbfaeolgndjibdelcbioldnikfilkbg
URL Officiel https://chrome.google.com/webstore/detail/so-hot-right-now/hhbfaeolgndjibdelcbioldnikfilkbg
Description Highlights most viewed articles on www.nytimes.com
Taille du Fichier 57.17 KB
Nombre d'Installations 15
Version Actuelle 2.0.1
Dernière Mise à Jour 2015-09-08
Date de Publication 2015-09-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur Erik Christensen
Type de Paiement free
Langues Prises en Charge 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"
    ]
}