Reddit Stalker Extension

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

Reddit Stalker Extensionคืออะไร?

Reddit Stalker Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jontelang และคุณลักษณะหลักของมันคือ "One-click solution to finding a users posts in any given subreddit."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Stalker Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}