So Hot Right Now

Highlights most viewed articles on www.nytimes.com

什麼是So Hot Right Now?

So Hot Right Now是由Erik Christensen開發的Chrome擴展程式,該擴展的主要功能是“Highlights most viewed articles on www.nytimes.com”。

擴展截圖

screenshot

下載So Hot Right Now擴展crx文件

下載So Hot Right Now擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 So Hot Right Now So Hot Right Now
ID hhbfaeolgndjibdelcbioldnikfilkbg
官方網址 https://chrome.google.com/webstore/detail/so-hot-right-now/hhbfaeolgndjibdelcbioldnikfilkbg
簡介 Highlights most viewed articles on www.nytimes.com
檔案大小 57.17 KB
安裝次數 15
目前版本 2.0.1
更新時間 2015-09-08
上架時間 2015-09-08
評分 5.00/5 共 1 次評分
開發者 Erik Christensen
付費類型 free
支援的語言 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"
    ]
}