My Reddit Companion

My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions.

My Reddit Companion क्या है?

My Reddit Companion alex2005 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        My Reddit Companion is an extension that integrates Reddit into the browser.  
It has a new slick responsive UI made with Bootstrap 4.  
  
After opening a Reddit link, either by clicking the thumbnail/title or using the keyboard (supports RES keyboard nav), it shows a bar with common info (score, title, subreddit, comments) and actions (login, upvote, downvote, save, moderator spam/remove/approve, close or minimize).  
  
Moderator actions and unread messages notifications are enabled by default.  
It has a lot of options, like to disable the aforementioned options, a dark theme, transparent background, start the bar minimized, bar persists between pages and others (see the settings screenshot for the complete list).  
  
After minimizing the bar, right click the maximize button to move it in the opposite direction (if it blocks anything in the page).  
Supports links with multiple redirects.  
  
Click the browser action to open a new tab to the Reddit submit page with the url and title autocompleted.                    

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

नाम My Reddit Companion My Reddit Companion
ID ghkmgdhpbkijdnnhodlejkbpehnkoglf
आधिकारिक URL https://chromewebstore.google.com/detail/my-reddit-companion/ghkmgdhpbkijdnnhodlejkbpehnkoglf
विवरण My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions.
फ़ाइल का आकार 1.06 MB
स्थापना संख्या 117
वर्तमान संस्करण 3.4.3
अंतिम अपडेट 2021-10-30
प्रकाशन तिथि 2019-02-12
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर alex2005
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/akalineskou/my-reddit-companion
सहायता पृष्ठ URL https://github.com/akalineskou/my-reddit-companion/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Reddit Companion",
    "version": "3.4.3",
    "manifest_version": 2,
    "description": "My Reddit Companion integrates Reddit into the browser. After opening a link (mouse\/keyboard) it shows a bar with info and actions.",
    "homepage_url": "https:\/\/github.com\/alex2005git\/my-reddit-companion",
    "permissions": [
        "tabs",
        "webRequest",
        "storage",
        "notifications",
        ""
    ],
    "icons": {
        "16": "images\/reddit-16.png",
        "24": "images\/reddit-24.png",
        "32": "images\/reddit-32.png",
        "48": "images\/reddit-48.png",
        "64": "images\/reddit-64.png",
        "96": "images\/reddit-96.png",
        "128": "images\/reddit-128.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "libs\/jquery.js",
                "js\/debug.js",
                "js\/utils.js",
                "js\/options.js",
                "js\/content_reddit.js",
                "js\/content_overlay.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/content_overlay.css",
        "html\/content_bar.html"
    ],
    "options_ui": {
        "page": "html\/options.html"
    },
    "browser_action": {
        "default_title": "Submit to Reddit",
        "default_icon": {
            "16": "images\/reddit-16.png",
            "24": "images\/reddit-24.png",
            "32": "images\/reddit-32.png",
            "48": "images\/reddit-48.png"
        }
    }
}