Canvas Chart

Add a chart to canvas for a better to-do list sidebar visual.

Τι είναι το Canvas Chart;

Το Canvas Chart είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Canvas Chart Extension, και η κύρια λειτουργία του είναι "Add a chart to canvas for a better to-do list sidebar visual.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Add a visual chart to canvas to visually track your to do list and progress. **RELOAD CANVAS** after download.

Ever had trouble knowing what school work you need to do? Want a better way to track and visualize it? This is for you. Canvas Chart creates a better side bar chart and to do list to help you better understand and visualize your progress.

HERE's what you should know: 
- The chart includes a ring for each class that closes the more items you complete. 
- Creates a to do and completed list below the chart
- Change the color of the course tiles to change the color of the rings. 
- Complete/check off items to update your to do list and see chart progress.
- Change the timeframe via the settings button (choose between daily, weekly, or monthly time frames)  
- Unselect/undo complete tasks for them to go back to the to-do list.
- Get fun confetti on screen as you check off items. 
- Add custom tasks via the "+" button on bottom of list.
- Reload canvas to see the chart install

Its free to use and guaranteed to improve your experience. So go ahead and give it a try by clicking the "Add to Chrome" blue button above. 

You could be using it in 20 seconds from now.                    

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

Όνομα Canvas Chart Canvas Chart
ID ipmmohddmgcjpochjcedmhallbofeefm
Επίσημο URL https://chromewebstore.google.com/detail/canvas-chart/ipmmohddmgcjpochjcedmhallbofeefm
Περιγραφή Add a chart to canvas for a better to-do list sidebar visual.
Μέγεθος Αρχείου 275 KB
Αριθμός Εγκαταστάσεων 213
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-11-21
Ημερομηνία Δημοσίευσης 2023-11-21
Αξιολόγηση 4.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Canvas Chart Extension
Ηλεκτρονικό ταχυδρομείο canvaschartextension@gmail.com
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://axiomatic-sight-d6e.notion.site/Canvas-Chart-Privacy-Policy-8ff6dc7d78ee41dc9cec4c189934042c?pvs=4
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Add a chart to canvas for a better to-do list sidebar visual.",
    "version": "1.0.2",
    "manifest_version": 3,
    "name": "Canvas Chart",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "options.html"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}