Reddit Comment Arrow

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

Reddit Comment Arrow क्या है?

Reddit Comment Arrow proohit द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The loved arrow in the reddit comment section to skip to the next top level comment"।

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

screenshot
screenshot
screenshot

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

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

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

                        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".                    

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

नाम Reddit Comment Arrow Reddit Comment Arrow
ID njalndcfgcolndhkmdkjihclbcnmomjl
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-comment-arrow/njalndcfgcolndhkmdkjihclbcnmomjl
विवरण The loved arrow in the reddit comment section to skip to the next top level comment
फ़ाइल का आकार 28.07 KB
स्थापना संख्या 178
वर्तमान संस्करण 1.0.15
अंतिम अपडेट 2024-02-26
प्रकाशन तिथि 2022-09-15
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर proohit
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/proohit/chrome-reddit-comment-arrow
सहायता पृष्ठ URL https://github.com/proohit/chrome-reddit-comment-arrow/issues
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}