Last Visited Toolip

Shows last visit time in link toolips.

Last Visited Toolipคืออะไร?

Last Visited Toolip เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rotem Dan และคุณลักษณะหลักของมันคือ "Shows last visit time in link toolips."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Last Visited Toolip

ดาวน์โหลดไฟล์ส่วนขยาย Last Visited Toolip ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Works best when visited links are distinctly colored, such as with the extension:
https://chrome.google.com/webstore/detail/gray-visited-links/kkjgfghpbiglkmaoekkankbcjckihcah

Animated screen capture:
https://giphy.com/gifs/1Ya3O25ThPpUVCOG44                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Last Visited Toolip Last Visited Toolip
ID hgjplicehclhhnijafojpkpancilpmen
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/last-visited-toolip/hgjplicehclhhnijafojpkpancilpmen
คำอธิบาย Shows last visit time in link toolips.
ขนาดไฟล์ 21.35 KB
จำนวนการติดตั้ง 131
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2018-03-19
วันที่เผยแพร่ 2018-03-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Rotem Dan
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rotemdan/LastVisitedTooltip
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Last Visited Toolip",
    "version": "0.1.4",
    "description": "Shows last visit time in link toolips.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "author": "Rotem Dan",
    "homepage_url": "https:\/\/github.com\/rotemdan\/LastVisitedTooltip",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "common.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "common.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": false
        }
    ],
    "permissions": [
        "history"
    ]
}