LinkHistory

Show visited links

ما هو LinkHistory؟

LinkHistory هو إضافة Chrome تم تطويرها بواسطة Xitake، والميزة الرئيسية لها هي "Show visited links".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة LinkHistory

قم بتنزيل ملفات الامتداد LinkHistory بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}