companion for reddit

Turn your browser into a redditor's best friend.

companion for reddit क्या है?

companion for reddit Toolbox development team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn your browser into a redditor's best friend."।

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

screenshot

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

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

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

                        This is a modified version of the official reddit companion which can be found here: 
https://chrome.google.com/webstore/detail/reddit-companion/algjnflpgoopkdijmkalfcifomdhmcbe 

This version fixes some long outstanding bugs and adds some new things:

- https support: should work on (more) https pages now. 
- notifications work again: the old companion used an outdated call. 
- design tweaks: Less shadows, less gradients, less rounded corners. 

Todo: 

- Update the notifications to have a better suited icon that is not blurred out. 
- Add support for moderation related tasks. 
   - Possibly integrate these with the moderator toolbox extension.                    

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

नाम companion for reddit companion for reddit
ID hjndgefhmfcgpoocjcgoemphhdkbhipm
आधिकारिक URL https://chromewebstore.google.com/detail/companion-for-reddit/hjndgefhmfcgpoocjcgoemphhdkbhipm
विवरण Turn your browser into a redditor's best friend.
फ़ाइल का आकार 95.58 KB
स्थापना संख्या 1,166
वर्तमान संस्करण 2.0.4
अंतिम अपडेट 2016-06-21
प्रकाशन तिथि 2016-06-21
रेटिंग 4.61/5 कुल 23 रेटिंग्स
डेवलपर Toolbox development team
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/creesch/reddit-companion
गोपनीयता नीति पृष्ठ URL https://www.reddit.com/r/toolbox/wiki/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "companion for reddit",
    "version": "2.0.4",
    "manifest_version": 2,
    "description": "Turn your browser into a redditor's best friend.",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'self'; connect-src 'self' https:\/\/*.reddit.com; connect-src 'self' http:\/\/*.reddit.com; style-src 'self' 'unsafe-inline'; script-src 'self'",
    "icons": {
        "16": "images\/shine-16.png",
        "48": "images\/shine-48.png",
        "128": "images\/shine-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "images\/reddit.png",
        "default_title": "Show reddit information"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "debug.js",
                "redditContent.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "debug.js",
                "pageOverlay.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "pageOverlay.css",
        "bar.html",
        "submit.html",
        "images\/reddit-mail.svg",
        "images\/reddit-modmail.svg"
    ]
}