Reddit Participation

Replaces all np.reddit.com links on Reddit, primarily for /r/bestof.

Reddit Participation क्या है?

Reddit Participation Zachary 'zer0t3ch' Hill द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces all np.reddit.com links on Reddit, primarily for /r/bestof."।

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

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

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

                        What is it?

Reddit-Participation is a chrome extension that serves one purpose: to fix all `np.reddit.com` links posted on Reddit.


Why?

np.reddit.com links were created to help prevent the participation of users in one sub from interacting/participating with other subs that get linked. (Such as the links in `/r/bestof`)

This is meant to be a way around that.


What EXACTLY does it do?

This extension will convert all `np.reddit.com` links on Reddit into `www.reddit.com` links. (The change is configurable)


How do I use it?

Just browse Reddit, and this will take care of the rest.


How do I change my desired prefix?

If you desire something other than www for your prefixes, then navigate to any reddit.com page, right-click the black reddit icon in your omnibox, and select options. 

WARNING: Any changes made to the text-box on the options page is automatically saved into the extensions local-storage, so if your links suddenly aren't working, make sure you didn't empty or modify the option to a reddit subdomain that doesn't exist                    

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

नाम Reddit Participation Reddit Participation
ID lpjcboajbliglnpjchbihhbficpobalf
आधिकारिक URL https://chrome.google.com/webstore/detail/reddit-participation/lpjcboajbliglnpjchbihhbficpobalf
विवरण Replaces all np.reddit.com links on Reddit, primarily for /r/bestof.
फ़ाइल का आकार 99.72 KB
स्थापना संख्या 15
वर्तमान संस्करण 1.1
अंतिम अपडेट 2014-10-15
प्रकाशन तिथि 2014-10-15
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर Zachary 'zer0t3ch' Hill
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Participation",
    "description": "Replaces all np.reddit.com links on Reddit, primarily for \/r\/bestof.",
    "author": "Zachary \"zer0t3ch\" Hill",
    "version": "1.1",
    "icons": {
        "16": "icons\/icon016.png",
        "24": "icons\/icon024.png",
        "32": "icons\/icon032.png",
        "48": "icons\/icon048.png",
        "64": "icons\/icon064.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png",
        "512": "icons\/icon512.png"
    },
    "options_page": "pages\/options.html",
    "permissions": [
        "tabs",
        "background",
        "storage",
        "*:\/\/*.reddit.com\/*",
        "*:\/\/reddit.com\/*"
    ],
    "page_action": {
        "name": "Reddit Participation",
        "default_title": "Replacing all instances of np.reddit.com with www.reddit.com",
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "16": "icons\/icon016.png",
            "24": "icons\/icon024.png",
            "32": "icons\/icon032.png",
            "48": "icons\/icon048.png",
            "64": "icons\/icon064.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png",
            "512": "icons\/icon512.png"
        }
    },
    "background": {
        "scripts": [
            "participation.js"
        ],
        "persistent": false
    }
}