Reddit: Remember seen links, open all unseen
Remembers which links on Reddit you've seen (even if your browser history don't) and can open all unseen in new tabs.
Reddit: Remember seen links, open all unseenคืออะไร?
Reddit: Remember seen links, open all unseen เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zx และคุณลักษณะหลักของมันคือ "Remembers which links on Reddit you've seen (even if your browser history don't) and can open all unseen in new tabs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit: Remember seen links, open all unseen
ดาวน์โหลดไฟล์ส่วนขยาย Reddit: Remember seen links, open all unseen ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will remember and mark all the links you've visited on reddit. This is useful when your browser remembers only some small number of visited links and when exceed that limit you cannot distinguish visited links from the new ones. If you browse a lot it gets frustrating. As a bonus, this extension adds a button that can open all the links from current page that you did not visited (in new tabs).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ijmaelhdahbdgfakhnbocahcfopaopec |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/reddit-remember-seen-link/ijmaelhdahbdgfakhnbocahcfopaopec |
คำอธิบาย | Remembers which links on Reddit you've seen (even if your browser history don't) and can open all unseen in new tabs. |
ขนาดไฟล์ | 41.28 KB |
จำนวนการติดตั้ง | 76 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2013-04-17 |
วันที่เผยแพร่ | 2013-04-17 |
คะแนน | 2.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | zx |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Remembers which links on Reddit you've seen (even if your browser history don't) and can open all unseen in new tabs.", "background": { "scripts": [ "background.js" ], "persistent": false }, "name": "Reddit: Remember seen links, open all unseen", "permissions": [ "http:\/\/reddit.com\/*", "storage" ], "options_page": "options.html", "icons": { "48": "48.png", "128": "128.png", "16": "16.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.reddit.com\/*" ], "js": [ "jquery.js", "main.js" ], "run_at": "document_start", "css": [ "main.css" ] } ], "manifest_version": 2, "version": "1.0.1" } |