Redditium

View reddit threads for the page you're on.

Redditiumคืออะไร?

Redditium เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://efskap.com และคุณลักษณะหลักของมันคือ "View reddit threads for the page you're on."

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

screenshot
screenshot

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

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

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

                        Whenever you're on a page that's been submitted to Reddit, this extension will show you links to the submissions. Very helpful for when you don't want to form your own opinions on something you've been linked to.

It's an updated fork of Redditted, updated to support manifest v2 and with my own tweaks, improvements, and bugfixes.

Source code: https://github.com/efskap/redditium

1.1.9:
- Dark theme
- Sort settings
- reddit.com/*/comments/ -> match links to entire thread, not the specific url (let me know if this isn't helpful)

1.1.8:
- Should correctly retry after server errors now.

1.1.7:
- Fixed youtu.be not being searched for youtube.com URLs.... oops.
- Fixed subreddit link not being clickable with M1.

1.1.6:
- Filtering out of false positives for imgur (because their URLs are case sensitive, while reddit's search isn't)

1.1.5:
- Fixed imgur regex to work for galleries, although it's still a bit aggressive (may turn up unrelated results with the same id)
- Fixed badge for new Chrome UI (looks like the alpha channel isn't really supported anymore)

1.1.4:
- Fixed comment links clicked in an incognito window opening in a normal window. (using Chrome API instead of target="_blank")

1.1.3:
- Style tweaks

1.1.2:
- Fetch maximum possible results, rather than the default. (25 -> 100)
- HTTPS comment links.

1.1.1:
- Fixed Youtube ID escaping (which had issues with hyphens)

1.1:

- Fixed only the first URL parameter being considered for lookup.
- On Youtube pages, the video ID itself is now looked up, not just the exact URL.
- HTTPS for all API requests.
- Badge colour is faded for 0 results, and doesn't say 'NEW' anymore.
- Higher resolution icon.                    

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

ชื่อ Redditium Redditium
ID kmgbgbcecgmihglbaknhclkkocdmjhah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/redditium/kmgbgbcecgmihglbaknhclkkocdmjhah
คำอธิบาย View reddit threads for the page you're on.
ขนาดไฟล์ 133 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 1.1.9
อัปเดตครั้งล่าสุด 2018-06-10
วันที่เผยแพร่ 2018-06-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://efskap.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "main.js"
        ]
    },
    "browser_action": {
        "default_icon": "alien.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "description": "View reddit threads for the page you're on.",
    "manifest_version": 2,
    "name": "Redditium",
    "author": "efskap",
    "permissions": [
        "https:\/\/www.reddit.com\/",
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "alien.png"
    },
    "version": "1.1.9"
}