Page Timer
How long have I been on this page?
Page Timer क्या है?
Page Timer sworley@google.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "How long have I been on this page?"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Page Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Ever open an email, do a task, then wonder how long that took? Install this, then just look at the timer next to the URL bar. It records how long it's been since the URL has changed. Click to see the last few pages you were on and how long you spent there. All data is kept locally in ram; no data is sent over the network or saved to disk. New in version 1.7 (Oct 2017): Display seconds. Source code: https://github.com/google/page-timer/
एक्सटेंशन की मूल जानकारी
नाम | |
ID | enljfpkeopdppbphgadibdpodgjhmabm |
आधिकारिक URL | https://chromewebstore.google.com/detail/page-timer/enljfpkeopdppbphgadibdpodgjhmabm |
विवरण | How long have I been on this page? |
फ़ाइल का आकार | 32.27 KB |
स्थापना संख्या | 7,000 |
वर्तमान संस्करण | 1.7 |
अंतिम अपडेट | 2017-10-18 |
प्रकाशन तिथि | 2017-10-18 |
रेटिंग | 4.67/5 कुल 12 रेटिंग्स |
डेवलपर | sworley@google.com |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/google/page-timer/ |
गोपनीयता नीति पृष्ठ URL | https://github.com/google/page-timer/blob/master/PRIVACY.md |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page Timer", "description": "How long have I been on this page?", "version": "1.7", "author": "sworley@google.com", "permissions": [ "tabs" ], "icons": { "16": "clock16.png", "48": "clock48.png", "128": "clock128.png" }, "browser_action": { "default_icon": { "19": "browser-action-19.png", "38": "browser-action-38.png" } }, "background": { "scripts": [ "common.js", "background.js" ], "persistent": true }, "options_page": "options.html" } |