Reddit Comment Arrow

The loved arrow in the reddit comment section to skip to the next top level comment

Cos'è Reddit Comment Arrow?

Reddit Comment Arrow è un'estensione di Chrome sviluppata da proohit, e la sua funzione principale è "The loved arrow in the reddit comment section to skip to the next top level comment".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Reddit Comment Arrow

Scarica i file di estensione Reddit Comment Arrow 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

                        Brings the skip-to-next-top-level-comment-button from the mobile apps to the desktop version of reddit.

The button will be positioned on the middle left side of the screen by default.

Instructions:
- Open a reddit post page
- Wait until top comments have loaded
- Click on the button to jump to the next comment
- Hold and drag (default 500 milliseconds) to reposition the button
- You can alter several options in the action menu of the extension. Just click on the icon in the extension popover.

If the button should mislocate by any reason, its' position can be reset from the action menu via "Reset button position".                    

Informazioni di Base sull'Estensione

Nome Reddit Comment Arrow Reddit Comment Arrow
ID njalndcfgcolndhkmdkjihclbcnmomjl
URL Ufficiale https://chromewebstore.google.com/detail/reddit-comment-arrow/njalndcfgcolndhkmdkjihclbcnmomjl
Descrizione The loved arrow in the reddit comment section to skip to the next top level comment
Dimensione del File 28.07 KB
Conteggio Installazioni 178
Versione Corrente 1.0.15
Ultimo Aggiornamento 2024-02-26
Data di Pubblicazione 2022-09-15
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore proohit
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/proohit/chrome-reddit-comment-arrow
URL della Pagina di Aiuto https://github.com/proohit/chrome-reddit-comment-arrow/issues
Lingue Supportate de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.0.15",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/Logo-16.png",
            "32": "images\/Logo-32.png",
            "128": "images\/Logo-128.png"
        }
    },
    "icons": {
        "16": "images\/Logo-16.png",
        "32": "images\/Logo-32.png",
        "128": "images\/Logo-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "button.css"
            ],
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/Reddit-Comment-Arrow.svg"
            ],
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ]
        }
    ]
}