To the Comments!

View the reddit or Hacker News comments for a given page

Cos'è To the Comments!?

To the Comments! è un'estensione di Chrome sviluppata da https://burba.io, e la sua funzione principale è "View the reddit or Hacker News comments for a given page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione To the Comments!

Scarica i file di estensione To the Comments! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        View the Hacker News and Reddit comments for your current page.                    

Informazioni di Base sull'Estensione

Nome To the Comments! To the Comments!
ID ceghmjigckmapkbgccgehlipbkdhglab
URL Ufficiale https://chromewebstore.google.com/detail/to-the-comments/ceghmjigckmapkbgccgehlipbkdhglab
Descrizione View the reddit or Hacker News comments for a given page
Dimensione del File 20.92 KB
Conteggio Installazioni 16
Versione Corrente 1.0.1
Ultimo Aggiornamento 2017-04-04
Data di Pubblicazione 2017-04-04
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://burba.io
Tipo di Pagamento free
Sito Web dell'Estensione http://tothecomments.burba.io
URL della Pagina di Aiuto http://tothecomments.burba.io
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "To the Comments!",
    "description": "View the reddit or Hacker News comments for a given page",
    "version": "1.0.1",
    "icons": {
        "128": "src\/images\/comment.png"
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "src\/images\/comment.png",
        "default_title": "To the Comments!",
        "default_popup": "src\/popup.html"
    },
    "background": {
        "scripts": [
            "src\/js\/thru.js",
            "src\/js\/get-active-tab.js",
            "src\/js\/get-active-url.js",
            "src\/js\/get-comments.js",
            "src\/js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Show comments for current page"
        },
        "open-top-reddit-link": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Open the top reddit link for this page"
        },
        "open-top-hn-link": {
            "suggested_key": {
                "default": "Alt+H"
            },
            "description": "Open the top Hacker News link for this page"
        }
    }
}