Hacker News Auto Refresh

This extension will refresh hacker news once a minute via AJAX.

Hacker News Auto Refresh क्या है?

Hacker News Auto Refresh Johnny Gannon द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will refresh hacker news once a minute via AJAX."।

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

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

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

                        This is a simple extension which runs in the background and automatically refreshes Hacker News at a set interval via AJAX.  By design, it only refreshes the index pages and not the discussion pages.

The extension provides options to set a custom refresh interval and to enable/disable a subtle animation of the YC logo upon a successful refresh.  By default it will refresh once a minute, and will flash the logo upon a successful refresh so you know it is working.

In the spirit of being a good netizen, this extension will not attempt to refresh the page if it is running in an inactive/background tab;  instead, it will immediately refresh the page when the tab is brought back into focus and will continue updating at the set interval until it goes out of focus again.  It also will not accept a refresh interval less than 30 seconds.

Enjoy!                    

एक्सटेंशन की मूल जानकारी

नाम Hacker News Auto Refresh Hacker News Auto Refresh
ID ljmkocffbmlnbmimnlpljgeindbagbde
आधिकारिक URL https://chrome.google.com/webstore/detail/hacker-news-auto-refresh/ljmkocffbmlnbmimnlpljgeindbagbde
विवरण This extension will refresh hacker news once a minute via AJAX.
फ़ाइल का आकार 13.25 KB
स्थापना संख्या 13
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2013-12-21
प्रकाशन तिथि 2013-12-21
रेटिंग 3.00/5 कुल 3 रेटिंग्स
डेवलपर Johnny Gannon
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News Auto Refresh",
    "description": "This extension will refresh hacker news once a minute via AJAX.",
    "version": "1.0.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/",
                "https:\/\/news.ycombinator.com\/news",
                "https:\/\/news.ycombinator.com\/newest",
                "https:\/\/news.ycombinator.com\/threads*",
                "https:\/\/news.ycombinator.com\/newcomments",
                "https:\/\/news.ycombinator.com\/ask",
                "https:\/\/news.ycombinator.com\/jobs"
            ],
            "css": [
                "animate-custom.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage"
    ]
}