With Intention

Browse distracting websites with intention.

Τι είναι το With Intention;

Το With Intention είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Widua, και η κύρια λειτουργία του είναι "Browse distracting websites with intention.".

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

screenshot
screenshot
screenshot

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

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

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

                        «With Intention» is a Chrome extension that helps you browse the web more intentionally. 

By simply stating your intention of selected websites every time you visit them, mindless browsing of distracting websites can be reduced and turned into a more mindful experience.


📚 Background

To help you avoid distracting websites, some extensions blacklist entire websites. But, this doesn't work if you need to look something up now and then. For this reason I am a big fan of DK's 'Intention' extension [1], which instead of blacklisting websites, 'unlocks' them for a certain period of time.

In my daily work though, this created a lot of friction because estimating and unlocking time periods distracted me from the actual work.
«With Intention» is essentially a reduction of DK's extension: by simply and only writing down the intention when visiting certain websites, intentional working is reinforced and accidental mindless browsing is reduced.

The extension is open source and hosted on GitHub [2].

🔗 Links
[1] https://chrome.google.com/webstore/detail/intention-stop-mindless-b/dladanhaondcgpahgiflodhckhoeohoe
[2] https://github.com/alexwidua/with-intention                    

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

Όνομα With Intention With Intention
ID fccbnilmkfoeamilfnaannjjocnnigio
Επίσημο URL https://chromewebstore.google.com/detail/with-intention/fccbnilmkfoeamilfnaannjjocnnigio
Περιγραφή Browse distracting websites with intention.
Μέγεθος Αρχείου 54.98 KB
Αριθμός Εγκαταστάσεων 119
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2021-10-21
Ημερομηνία Δημοσίευσης 2021-10-21
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Alex Widua
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/alexwidua/with-intention
URL της Σελίδας Πολιτικής Απορρήτου https://aluminum-agate-fb1.notion.site/With-Intention-Privacy-Policy-b72be50e55e44f378074264c16b1f3a7
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "With Intention",
    "author": "Alex Widua",
    "manifest_version": 3,
    "version": "0.2",
    "description": "Browse distracting websites with intention.",
    "permissions": [
        "webNavigation",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon_16.png",
            "32": "\/images\/icon_32.png",
            "48": "\/images\/icon_48.png",
            "128": "\/images\/icon_128.png"
        }
    },
    "optional_permissions": [
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "\/images\/icon_16.png",
        "32": "\/images\/icon_32.png",
        "48": "\/images\/icon_48.png",
        "128": "\/images\/icon_128.png"
    }
}