Procrastination Alert

Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.

Procrastination Alert क्या है?

Procrastination Alert Simon Li द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.                    

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

नाम Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
आधिकारिक URL https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
विवरण Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
फ़ाइल का आकार 14.67 KB
स्थापना संख्या 46
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-11-25
प्रकाशन तिथि 2020-11-25
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर Simon Li
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Procrastination Alert",
    "version": "1.0",
    "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.",
    "manifest_version": 2,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-32.png",
        "default_title": "Procrastination Alert",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}