Simple Screen Break
Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
Simple Screen Break क्या है?
Simple Screen Break Solid Code Solutions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple Screen Break एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Displays a simple alert reminding you to take a screen break. You can choose how often the notification appears from one of the following options: every 5, 10, 15, 20, 25, 30, 45 or 60 minutes. Simple Screen Break is simple (as it's name suggests!) and easy-to-use.
एक्सटेंशन की मूल जानकारी
नाम | Simple Screen Break |
ID | jckfggaihbloddfjgaodhfjhjegpnalo |
आधिकारिक URL | https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo |
विवरण | Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear. |
फ़ाइल का आकार | 56.4 KB |
स्थापना संख्या | 35 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2023-02-23 |
प्रकाशन तिथि | 2023-01-18 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Solid Code Solutions |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://www.solidcode.solutions/privacy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Simple Screen Break", "version": "0.0.2", "description": "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.", "icons": { "16": "\/img\/logo_16.png", "32": "\/img\/logo_32.png", "48": "\/img\/logo_48.png", "128": "\/img\/logo_128.png" }, "action": { "default_title": "Simple Screen Break Popup", "default_popup": "index.html" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "js": [ "content\/main.js" ], "css": [ "content\/main.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "alarms", "storage" ] } |