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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will warn you if you are reading an old news article"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stale News Warning एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}