Sleep Timer

Put any tab on a sleep timer to close or mute the tab when the timer expires.

Sleep Timer क्या है?

Sleep Timer daniel.andrew.dehaas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Put any tab on a sleep timer to close or mute the tab when the timer expires."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sleep Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.                    

एक्सटेंशन की मूल जानकारी

नाम Sleep Timer Sleep Timer
ID aogefgiamlllkemngojodbhbdigamjkj
आधिकारिक URL https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj
विवरण Put any tab on a sleep timer to close or mute the tab when the timer expires.
फ़ाइल का आकार 25.49 KB
स्थापना संख्या 5,756
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-02-03
प्रकाशन तिथि 2021-02-02
रेटिंग 2.52/5 कुल 21 रेटिंग्स
डेवलपर daniel.andrew.dehaas
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://www.danielde.dev/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sleep Timer",
    "version": "1.0",
    "description": "Put any tab on a sleep timer to close or mute the tab when the timer expires.",
    "permissions": [
        "tabs",
        "alarms",
        "storage"
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Sleep Timer"
    }
}