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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } |