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是由zx开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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" } |