Reddit Stalker Extension

One-click solution to finding a users posts in any given subreddit.

Reddit Stalker Extensionとは何ですか?

Reddit Stalker Extensionはjontelangによって開発されたChromeの拡張機能で、その主な機能は「One-click solution to finding a users posts in any given subreddit.」です。

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

screenshot

Reddit Stalker Extension拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        With this extension you can search through any users submission-history in one click. It will look for specific subreddits that you choose and display links to each of the submissions.

For example if you want to find every submission in /r/funny from user ArnoldX it will return a list like this 1,2,3,4,5 where each number is a link to ArnoldXs submissions.

For support, suggestions or anything else: [email protected]                    

拡張機能の基本情報

名前 Reddit Stalker Extension Reddit Stalker Extension
ID aiihialdkgonkmeacbemjjanjnkodhhe
公式URL https://chrome.google.com/webstore/detail/reddit-stalker-extension/aiihialdkgonkmeacbemjjanjnkodhhe
説明 One-click solution to finding a users posts in any given subreddit.
ファイルサイズ 343 KB
インストール数 124
現在のバージョン 0.4
最終更新日 2012-12-12
公開日 2012-12-12
評価 2.50/5 合計 2 レビュー
開発者 jontelang
支払い方法 free
拡張機能のウェブサイト https://github.com/jontelang/RedditStalkerExtension
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Stalker Extension",
    "version": "0.4",
    "manifest_version": 2,
    "description": "One-click solution to finding a users posts in any given subreddit.",
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_title": "Reddit stalk.",
        "default_popup": "fragments\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "lib\/jquery-1.8.3.min.js",
                "scripts\/main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "scripts\/l.gif"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}