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
官方網址 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"
    ]
}