LinkHistory

Show visited links

LinkHistoryとは何ですか?

LinkHistoryはXitakeによって開発されたChromeの拡張機能で、その主な機能は「Show visited links」です。

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

screenshot
screenshot
screenshot

LinkHistory拡張機能のCRXファイルをダウンロード

LinkHistory拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        LinkHistory lets you remember last date and time of visited link, and show you the date of the first and last visit in addition to the number of vists so far.
Remember also that in the control panel you can select the color of visited links, enable or disable the balloon text and delete the history of visited links.                    

拡張機能の基本情報

名前 LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
公式URL https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
説明 Show visited links
ファイルサイズ 106 KB
インストール数 546
現在のバージョン 1.1
最終更新日 2016-09-24
公開日 2016-09-24
評価 4.71/5 合計 7 レビュー
開発者 Xitake
支払い方法 free
拡張機能のウェブサイト http://www.xitake.com
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkHistory",
    "version": "1.1",
    "description": "Show visited links",
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "background": {
        "scripts": [
            "js\/jquery-2.2.3.min.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "LinkHistory",
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-2.2.3.min.js",
                "js\/script.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}