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.」です。

拡張機能のスクリーンショット

screenshot

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).                    

拡張機能の基本情報

名前 Reddit: Remember seen links, open all unseen Reddit: Remember seen links, open all unseen
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"
}