Toolkit for YNAB
UI customizations and tweaks for the web version of YNAB.
Τι είναι το Toolkit for YNAB;
Το Toolkit for YNAB είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Toolkit for YNAB, και η κύρια λειτουργία του είναι "UI customizations and tweaks for the web version of YNAB.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Toolkit for YNAB
Λήψη αρχείων επέκτασης Toolkit for YNAB σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Toolkit for YNAB is a general purpose extension that adds features to YNAB and makes it more flexible. Have it your way! There are many different features available once installing the Toolkit for YNAB. You can see the full list here: https://github.com/toolkit-for-ynab/toolkit-for-ynab/blob/master/docs/feature-list.md All of these are configurable with options in the extension options page. Features under consideration and the general status of the project is on our Trello Board here: https://trello.com/b/EzOvXlil/ynab-enhanced-roadmap. Feel free to vote, comment and suggest new features. If you want to contribute, it's best if you can let us know so we don't double up on effort. You can see what is being worked on and by whom on the roadmap. This is an open source community developed and maintained extension. It is not affiliated with YNAB in any way (other than that we use it) and YNAB has not endorsed this at all. You Need a Budget and YNAB are registered trademarks of Steine LLC and/or one of its subsidiaries. This [app/plugin/script] is not officially supported by YNAB in any way. As such, your use of this [app/plugin/script] is risky. There is a very real possibility that using this [app/plugin/script] could introduce problems into your budget that YNAB, through its official support channels, will not be able to troubleshoot or fix. Please use at your own risk!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Toolkit for YNAB |
ID | lmhdkkhepllpnondndgpgclfjnlofgjl |
Επίσημο URL | https://chromewebstore.google.com/detail/toolkit-for-ynab/lmhdkkhepllpnondndgpgclfjnlofgjl |
Περιγραφή | UI customizations and tweaks for the web version of YNAB. |
Μέγεθος Αρχείου | 1.77 MB |
Αριθμός Εγκαταστάσεων | 65,782 |
Τρέχουσα Έκδοση | 3.12.1 |
Τελευταία Ενημέρωση | 2024-02-24 |
Ημερομηνία Δημοσίευσης | 2020-06-22 |
Αξιολόγηση | 4.91/5 Συνολικά 273 Αξιολογήσεις |
Προγραμματιστής | Toolkit for YNAB |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/toolkit-for-ynab/toolkit-for-ynab |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/toolkit-for-ynab/toolkit-for-ynab/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "Toolkit for YNAB", "name": "Toolkit for YNAB", "description": "UI customizations and tweaks for the web version of YNAB.", "version": "3.12.1", "content_scripts": [ { "matches": [ "*:\/\/*.youneedabudget.com\/*", "*:\/\/*.ynab.com\/*" ], "all_frames": true, "run_at": "document_idle", "js": [ "content-scripts\/extension-bridge.js" ] }, { "matches": [ "*:\/\/*.youneedabudget.com\/*", "*:\/\/*.ynab.com\/*" ], "all_frames": true, "run_at": "document_start", "js": [ "content-scripts\/enable-ember-debug.js" ] } ], "icons": { "1024": "assets\/images\/icons\/icon1024.png", "512": "assets\/images\/icons\/icon512.png", "256": "assets\/images\/icons\/icon256.png", "128": "assets\/images\/icons\/icon128.png", "100": "assets\/images\/icons\/icon100.png", "64": "assets\/images\/icons\/icon64.png", "48": "assets\/images\/icons\/icon48.png", "32": "assets\/images\/icons\/icon32.png", "16": "assets\/images\/icons\/button.png" }, "web_accessible_resources": [ { "resources": [ "assets\/*", "web-accessibles\/*" ], "matches": [ "*:\/\/*.youneedabudget.com\/*", "*:\/\/*.ynab.com\/*" ] } ], "background": { "service_worker": "background\/background.js" }, "homepage_url": "https:\/\/github.com\/toolkit-for-ynab\/toolkit-for-ynab\/", "options_ui": { "open_in_tab": true, "page": "options\/index.html" }, "action": { "default_icon": "assets\/images\/icons\/button.png", "default_title": "Toolkit for YNAB", "default_popup": "popup\/index.html" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youneedabudget.com\/*", "*:\/\/*.ynab.com\/*" ] } |