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.
Qu'est-ce que Reddit: Remember seen links, open all unseen ?
Reddit: Remember seen links, open all unseen est une extension Chrome développée par zx, et sa fonction principale est "Remembers which links on Reddit you've seen (even if your browser history don't) and can open all unseen in new tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reddit: Remember seen links, open all unseen
Téléchargez les fichiers d'extension Reddit: Remember seen links, open all unseen au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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).
Informations de Base sur l'Extension
Nom | |
ID | ijmaelhdahbdgfakhnbocahcfopaopec |
URL Officiel | https://chrome.google.com/webstore/detail/reddit-remember-seen-link/ijmaelhdahbdgfakhnbocahcfopaopec |
Description | Remembers which links on Reddit you've seen (even if your browser history don't) and can open all unseen in new tabs. |
Taille du Fichier | 41.28 KB |
Nombre d'Installations | 76 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2013-04-17 |
Date de Publication | 2013-04-17 |
Évaluation | 2.00/5 Total 1 Évaluations |
Développeur | zx |
Type de Paiement | free |
Langues Prises en Charge | 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" } |