Keep Reddit Fresh

Hide visited reddit posts.

Keep Reddit Freshคืออะไร?

Keep Reddit Fresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jmckib2 และคุณลักษณะหลักของมันคือ "Hide visited reddit posts."

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

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

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

                        Hides visited reddit posts automatically. Works with Reddit Enhancement Suite's never ending scroll.

Are you tired of seeing a pageful of already visited links when you open reddit? This extension will automatically click the 'hide' button beneath reddit posts that are already in your browser history. The posts are hidden when you open reddit or when RES never ending scroll loads a new page.

If you're using RES, there is a few seconds delay between pressing the 'hide' button and the post disappearing, giving you a chance to unhide the post. I recommend turning that off so that posts hide instantly. You can do that by going to https://www.reddit.com/#res:settings/betteReddit and switching the "Fix Hide Links" setting to off.

You can view posts that have been hidden by going to https://www.reddit.com//hidden/, making sure to change  to your reddit user name.

You can still manually click the 'hide' button for posts that you don't want to bother visiting.

View the source at https://github.com/jmckib/keep-reddit-fresh                    

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

ชื่อ Keep Reddit Fresh Keep Reddit Fresh
ID ofkgdgockgfdgmiglgoieibaoaplkdbc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/keep-reddit-fresh/ofkgdgockgfdgmiglgoieibaoaplkdbc
คำอธิบาย Hide visited reddit posts.
ขนาดไฟล์ 13.22 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-02-02
วันที่เผยแพร่ 2017-02-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jmckib2
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/reddit.com\/",
                "https:\/\/reddit.com\/",
                "http:\/\/*.reddit.com\/",
                "https:\/\/*.reddit.com\/",
                "http:\/\/*.reddit.com\/r\/*",
                "https:\/\/*.reddit.com\/r\/*",
                "http:\/\/*.reddit.com\/r\/*\/*\/",
                "https:\/\/*.reddit.com\/r\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Hide visited reddit posts.",
    "icons": {
        "48": "reddit_icon_48.png",
        "128": "reddit_icon_128.png"
    },
    "manifest_version": 2,
    "name": "Keep Reddit Fresh",
    "permissions": [
        "tabs",
        "history",
        "http:\/\/reddit.com\/*",
        "https:\/\/reddit.com\/*",
        "http:\/\/*.reddit.com\/*",
        "https:\/\/*.reddit.com\/*"
    ],
    "version": "1.0"
}