HackerNews Tweaks

Adds the additional /lists from HN to the top bar, and a few other tweaks

Τι είναι το HackerNews Tweaks;

Το HackerNews Tweaks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://www.jasonlotito.com, και η κύρια λειτουργία του είναι "Adds the additional /lists from HN to the top bar, and a few other tweaks".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HackerNews Tweaks

Λήψη αρχείων επέκτασης HackerNews Tweaks σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        HN-Tweaks does exactly that, it tweaks the Hacker News website with a few additional navigation links.  The goal is simple.  Provide additional features using the existing style and design of Hacker News.  The new links and menu fit in with the current style and color scheme of HN.

It adds a drop down menu that provides quick and easy access to different lists on Hacker News, lists that are frequently forgotten or missed by members.  It also provides easy access to your saved stories, as well as your comments (via your karma).

I'm also willing to add in additional features that fit with the theme and style of the Hacker News website.

--
Version 1.3.3 - Updates so Twitter feature works with new HTML changes.
Version 1.3.2 - Fixes display bug that added extra padding to table rows.
Version 1.3.1 - Fixes a bug that made selecting text impossible in some situations.

Version 1.3 - Allows you to now follow users.  Highlights user names on posts and comment so you can easily find the users.  Easy access to user's comments and submissions.

Version 1.2 - Adds a link to hnnotify to the menu dropdown

Version 1.1 - Twitter Icon added to the right of the link title text.  This can be disabled in the options page of the plugin.


--

Logo by position relative (CC BY-SA 3.0)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HackerNews Tweaks HackerNews Tweaks
ID dodohbmnbcomcegpkiijalaoigaphnfp
Επίσημο URL https://chrome.google.com/webstore/detail/hackernews-tweaks/dodohbmnbcomcegpkiijalaoigaphnfp
Περιγραφή Adds the additional /lists from HN to the top bar, and a few other tweaks
Μέγεθος Αρχείου 260 KB
Αριθμός Εγκαταστάσεων 10
Τρέχουσα Έκδοση 1.3.3
Τελευταία Ενημέρωση 2015-02-23
Ημερομηνία Δημοσίευσης 2015-02-23
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής http://www.jasonlotito.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HackerNews Tweaks",
    "version": "1.3.3",
    "manifest_version": 2,
    "description": "Adds the additional \/lists from HN to the top bar, and a few other tweaks",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "HackerNews Lists",
        "default_icon": "16.png",
        "default_popup": "credit.html"
    },
    "permissions": [
        "*:\/\/news.ycombinator.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "linker.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}