Simple Tab Timer
This extension creates a simple timer as a new tab.
Simple Tab Timer क्या है?
Simple Tab Timer Apes in Capes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension creates a simple timer as a new tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple Tab Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
If you're looking for a simple tab timer, this is it. Click on the icon, select the time, press START and you're off to the races. Also, if you've found this extension helpful, tell your friends about it!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | kfnnebepkloaefoekfghncjhfklhoffh |
आधिकारिक URL | https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh |
विवरण | This extension creates a simple timer as a new tab. |
फ़ाइल का आकार | 111 KB |
स्थापना संख्या | 304 |
वर्तमान संस्करण | 1.3.1 |
अंतिम अपडेट | 2022-03-25 |
प्रकाशन तिथि | 2019-10-11 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Apes in Capes |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.apesincapes.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Timer", "description": "This extension creates a simple timer as a new tab.", "version": "1.3.1", "icons": { "512": "icon512.png", "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon512.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*", "https:\/\/www.google.ca\/*", "http:\/\/www.google.ca\/*", "https:\/\/www.google.co.uk\/*", "http:\/\/www.google.co.uk\/*", "https:\/\/www.google.se\/*", "http:\/\/www.google.se\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |