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によって開発されたChromeの拡張機能で、その主な機能は「Find all subReddit listed on a page and open them from the context menu.」です。

拡張機能のスクリーンショット

screenshot

Reddit : Jump to subReddit拡張機能のCRXファイルをダウンロード

Reddit : Jump to subReddit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}