Reddit Find

Find the reddit comment threads for any website.

Reddit Findคืออะไร?

Reddit Find เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shivam Sarodia และคุณลักษณะหลักของมันคือ "Find the reddit comment threads for any website."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Reddit Find ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Reddit Find is a lightweight extension indicating the presence of comment threads for any webpage, such as a news article, comic, or image. When the site you're browsing has been discussed on reddit, the extension icon turns blue, directly connecting you to others' comments on the topic. If the website hasn't been submitted before, you're given the option to do so yourself.

Note: When installing this extension, you'll be told that it needs access to your data on all sites. While this warning may sound scary at first, it's simply because Reddit Find must add a sidebar to the page to show the list of threads.

Bugs or comments? Report them on:
reddit - http://www.reddit.com/r/RedditFind
GitHub - https://github.com/ShivamSarodia/Reddit-Find

(Inspired by http://www.reddit.com/r/SomebodyMakeThis/comments/289trx/a_browser_extension_that_sucks_comments_from/)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reddit Find Reddit Find
ID bemiojedkimjldplkanchmpfcogbjpdb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/reddit-find/bemiojedkimjldplkanchmpfcogbjpdb
คำอธิบาย Find the reddit comment threads for any website.
ขนาดไฟล์ 94.21 KB
จำนวนการติดตั้ง 67
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2014-07-23
วันที่เผยแพร่ 2014-07-23
คะแนน 3.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Shivam Sarodia
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Find",
    "description": "Find the reddit comment threads for any website.",
    "author": "Shivam Sarodia",
    "version": "1.0.3",
    "permissions": [
        "",
        "tabs"
    ],
    "icons": {
        "16": "img\/icon_main_16.png",
        "48": "img\/icon_main_48.png",
        "128": "img\/icon_main_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_inactive_small.png",
            "38": "img\/icon_inactive_big.png"
        },
        "default_title": "Click to view threads"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/moment.min.js",
                "js\/templateengine.js",
                "js\/searchthreads.js",
                "js\/panel.js",
                "js\/contentscript.js"
            ],
            "css": [
                "css\/index.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "img\/*",
        "html\/templates.html"
    ]
}