Trackr

Track the time you spend on various websites with beautiful graphs on the new tab page!

ما هو Trackr؟

Trackr هو إضافة Chrome تم تطويرها بواسطة Srikar Gudipati، والميزة الرئيسية لها هي "Track the time you spend on various websites with beautiful graphs on the new tab page!".

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

screenshot

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

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

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

                        This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!                    

معلومات أساسية عن التمديد

الاسم Trackr Trackr
ID pccehhnicffhgffhdfgainipddlopmie
عنوان URL الرسمي https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie
الوصف Track the time you spend on various websites with beautiful graphs on the new tab page!
حجم الملف 205 KB
عدد التثبيتات 5,000
النسخة الحالية 1.2
آخر تحديث 2015-02-23
تاريخ النشر 2015-02-23
تقييم 3.74/5 مجموع تقييمات 43
المطور Srikar Gudipati
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trackr",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Track the time you spend on various websites with beautiful graphs on the new tab page!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/jquery\/jquery.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "chrome_url_overrides": {
        "newtab": "src\/override\/override.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/contentscript\/contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "history",
        "tabs",
        "*:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ]
}