Reddit : Jump to subReddit

Find all subReddit listed on a page and open them from the context menu.

Reddit : Jump to subReddit क्या है?

Reddit : Jump to subReddit Arnaud Lepaul द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find all subReddit listed on a page and open them from the context menu."।

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

screenshot

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

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

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

                        Jump from a subReddit to another via the context menu.

Just open a Reddit.com page and you'll get a context menu with all subReddits listed in the page.

The extension catch the following patterns :
- r/subreddit
- /r/subreddit


Changelog
0.9 
 - Initial release
1.0.0
 - New : Refresh Context menu entry
2.0.0 
 - Change : Using Google Chrome Manifest v2
2.0.1
 - New : Auto refresh when changing tab (context menu always up-to-date when browsing a Reddit Tab)
 - Change : No context menu when not on a Reddit Tab
2.0.2
 - Change : Renamed to "Reddit : Jump to subReddit"
2.0.3
 - Fix : changed RegExp
2.0.4
 - Bugfix                    

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

नाम Reddit : Jump to subReddit Reddit : Jump to subReddit
ID jllllodicenbdlcllpfjekckcdmncbac
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-jump-to-subreddit/jllllodicenbdlcllpfjekckcdmncbac
विवरण Find all subReddit listed on a page and open them from the context menu.
फ़ाइल का आकार 53.74 KB
स्थापना संख्या 63
वर्तमान संस्करण 2.0.4
अंतिम अपडेट 2013-07-16
प्रकाशन तिथि 2013-07-16
डेवलपर Arnaud Lepaul
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0.4",
    "name": "Reddit : Jump to subReddit",
    "description": "Find all subReddit listed on a page and open them from the context menu.",
    "icons": {
        "128": "icon-large.png",
        "16": "icon-bitty.png",
        "48": "icon-small.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications"
    ],
    "web_accessible_resources": [
        "icon-small.png"
    ]
}