Hacker News platinum

Hacker News extension that provides keyboard navigation based on reddit-platinum.

Hacker News platinum क्या है?

Hacker News platinum Felix द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hacker News extension that provides keyboard navigation based on reddit-platinum."।

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

screenshot
screenshot

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

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

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

                        This extension provides a mouseless Hacker News navigation with cross tab navigation (Left arrow closes tab opened with right arrow).

This extension is based on the excellent reddit-plantinum extension by Mournier Florian:

https://chrome.google.com/webstore/detail/lgdabokohpkanioglmfikbhclpknccla?hc=search&hcp=main

Press ? to show keyboard shortcuts help.

On links page:

  * Up               -> Previous link
  * Down             -> Next link
  * Right (or Enter) -> Open link in new tab (Hold Shift to open tab in background)
  * Left             -> Open comments in new tab
  * Page Up          -> Go up by 5 links
  * Page Down        -> Go down by 5 links
  * Home             -> To first link
  * End              -> To last link
  * Ctrl + Up        -> Upvote

On comment page:

  * Up               -> Previous comment
  * Down             -> Next comment
  * Ctrl + Up        -> Upvote comment
  * Space            -> Reply to comment in new tab
  * Left             -> Closes comment tab and brings you back to links page
  * Right or n       -> Go to next top-level comment.
  * p or Left        -> Go to previous top-
  * Page Up          -> Go up by 5 comments
  * Page Down        -> Go down by 5 comments
  * Home             -> To first comment
  * End              -> To last comment

Mouse scroll behaves like up and down arrow.
Alt + Scroll behaves as normal.

Project at: http://github.com/fberger/hackernews-navigation/                    

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

नाम Hacker News platinum Hacker News platinum
ID obmcndmmnnbahnkcegdghaonbabajnel
आधिकारिक URL https://chrome.google.com/webstore/detail/hacker-news-platinum/obmcndmmnnbahnkcegdghaonbabajnel
विवरण Hacker News extension that provides keyboard navigation based on reddit-platinum.
फ़ाइल का आकार 183 KB
स्थापना संख्या 70
वर्तमान संस्करण 12
अंतिम अपडेट 2014-02-23
प्रकाशन तिथि 2014-02-23
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Felix
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://news.ycombinator.com/
समर्थित भाषाएँ en
manifest.json
{
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "analytics.js",
            "jquery-1.9.1.min.js",
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.9.1.min.js",
                "jquery-ui-1.10.1.custom.min.js",
                "jquery.mousewheel.js",
                "content.js",
                "help.js"
            ],
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "help.css"
    ],
    "description": "Hacker News extension that provides keyboard navigation based on reddit-platinum.",
    "icons": {
        "128": "icon128.png"
    },
    "name": "Hacker News platinum",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "12"
}