LinkHistory
Show visited links
Apa itu LinkHistory?
LinkHistory adalah ekstensi Chrome yang dikembangkan oleh Xitake, dan fitur utamanya adalah "Show visited links".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi LinkHistory
Unduh file ekstensi LinkHistory dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | kkfohjphkeplcjojeiannnmbhflimpae |
URL Resmi | https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae |
Deskripsi | Show visited links |
Ukuran File | 106 KB |
Jumlah Instalasi | 546 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2016-09-24 |
Tanggal Publikasi | 2016-09-24 |
Penilaian | 4.71/5 Total 7 Penilaian |
Pengembang | Xitake |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.xitake.com |
Bahasa yang Didukung | 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" ] } |