LinkHistory

Show visited links

LinkHistory là gì?

LinkHistory là một tiện ích mở rộng Chrome được phát triển bởi Xitake, và tính năng chính của nó là "Show visited links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng LinkHistory

Tải xuống các tệp mở rộng LinkHistory dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LinkHistory LinkHistory
ID kkfohjphkeplcjojeiannnmbhflimpae
URL Chính Thức https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae
Mô tả Show visited links
Kích Thước Tệp 106 KB
Số Lần Cài Đặt 546
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-09-24
Ngày Phát Hành 2016-09-24
Đánh Giá 4.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Xitake
Loại Thanh Toán free
Trang Web Mở Rộng http://www.xitake.com
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}