Stoic Focus

Add personal popups on websites to remind yourself why you may want to be mindful of visiting that page.

Τι είναι το Stoic Focus;

Το Stoic Focus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cflynn, και η κύρια λειτουργία του είναι "Add personal popups on websites to remind yourself why you may want to be mindful of visiting that page.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Stoic Focus

Λήψη αρχείων επέκτασης Stoic Focus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Stoic Focus is a digital wellbeing extension that allows humans to set popup messages to themselves on any web page. 

The popups are to help encourage people to be more mindful when browsing the web. This allows a person to focus on what they really care about and not be distracted by addicting or unhealthy content. You can have a dialog with yourself and fight your impulsive behavior on your terms. I’ve found this more effective than straight blocking unhealthy websites.

The popups close within ten seconds or if a person clicks the close button. They can also be removed from sites if the popup is no longer helpful. 

Made this extension for myself. I believe it can help other people since it has been helping me.

Check out the source code on Github:
https://github.com/flynnstone9/stoic-focus                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Stoic Focus Stoic Focus
ID pbabebgndngiinolomgjelendckbjfko
Επίσημο URL https://chromewebstore.google.com/detail/stoic-focus/pbabebgndngiinolomgjelendckbjfko
Περιγραφή Add personal popups on websites to remind yourself why you may want to be mindful of visiting that page.
Μέγεθος Αρχείου 54.14 KB
Αριθμός Εγκαταστάσεων 44
Τρέχουσα Έκδοση 1.4.3
Τελευταία Ενημέρωση 2022-01-13
Ημερομηνία Δημοσίευσης 2020-12-13
Προγραμματιστής cflynn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stoic Focus",
    "author": "Connor Flynn",
    "version": "1.4.3",
    "description": "Add personal popups on websites to remind yourself why you may want to be mindful of visiting that page.",
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                ".\/styles\/content.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "views\/popup.html",
        "default_icon": {
            "16": "images\/stoic16.png",
            "32": "images\/stoic32.png",
            "48": "images\/stoic64.png",
            "128": "images\/stoic128.png"
        }
    },
    "icons": {
        "16": "images\/stoic16.png",
        "32": "images\/stoic32.png",
        "48": "images\/stoic64.png",
        "128": "images\/stoic128.png"
    },
    "web_accessible_resources": [
        "images\/stoic128.png",
        "views\/display.html",
        "styles\/content.css"
    ],
    "options_ui": {
        "page": "views\/options.html",
        "open_in_tab": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "manifest_version": 2
}