Stale News Warning

This extension will warn you if you are reading an old news article

Stale News Warningとは何ですか?

Stale News WarningはDenny de la Hayeによって開発されたChromeの拡張機能で、その主な機能は「This extension will warn you if you are reading an old news article」です。

拡張機能のスクリーンショット

screenshot

Stale News Warning拡張機能のCRXファイルをダウンロード

Stale News Warning拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension checks the date on news articles and warns you if you are reading an old article - helping to highlight (and hopefully prevent) old news masquerading as current news on social media.

Currently supported: BBC News, CNN, Daily Mail, The Guardian, Huffington Post, The Independent, India Times / Times of India, New York Times, Sky News, Stack Overflow, The Telegraph, Yahoo News, Yahoo News UK                    

拡張機能の基本情報

名前 Stale News Warning Stale News Warning
ID leimdfebooadifmdaofhjkplmpiimlpg
公式URL https://chromewebstore.google.com/detail/stale-news-warning/leimdfebooadifmdaofhjkplmpiimlpg
説明 This extension will warn you if you are reading an old news article
ファイルサイズ 48.63 KB
インストール数 42
現在のバージョン 0.11
最終更新日 2016-01-25
公開日 2016-01-25
評価 5.00/5 合計 4 レビュー
開発者 Denny de la Haye
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stale News Warning",
    "short_name": "Stale News",
    "description": "This extension will warn you if you are reading an old news article",
    "version": "0.11",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.bbc.co.uk\/news\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "bbc.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.cnn.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "cnn.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.dailymail.co.uk\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "dailymail.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.theguardian.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "theguardian.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.huffingtonpost.co.uk\/*",
                "*:\/\/www.huffingtonpost.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "huffingtonpost.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.independent.co.uk\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "independent.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.indiatimes.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "indiatimes.js"
            ]
        },
        {
            "matches": [
                "*:\/\/timesofindia.indiatimes.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "timesofindia.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.nytimes.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "nytimes.js"
            ]
        },
        {
            "matches": [
                "*:\/\/news.sky.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "skynews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/stackoverflow.com\/questions\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "stackoverflow.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.telegraph.co.uk\/news\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "telegraph.js"
            ]
        },
        {
            "matches": [
                "*:\/\/news.yahoo.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "yahoo.js"
            ]
        },
        {
            "matches": [
                "*:\/\/uk.news.yahoo.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "date-check.js",
                "yahoo-uk.js"
            ]
        }
    ]
}