stickynote tab
override the new tab page so that user can create sticky notes to take notes
Τι είναι το stickynote tab;
Το stickynote tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ellayang40, και η κύρια λειτουργία του είναι "override the new tab page so that user can create sticky notes to take notes".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης stickynote tab
Λήψη αρχείων επέκτασης stickynote tab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
* use new tab page to take quick notes on sticky notes * notes will be saved in the browser so that next time you open the new tab page, you will see your notes * note allows text formatting such as bolding, lists, changing font color, etc * can create, delete, and move notes * can minimize and maximize the notes Great for creating todo list and other quick notes for temporary use.
Βασικές Πληροφορίες Επέκτασης
Όνομα | stickynote tab |
ID | cpnckoglpiageliaeeopbhdahilnjeeb |
Επίσημο URL | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
Περιγραφή | override the new tab page so that user can create sticky notes to take notes |
Μέγεθος Αρχείου | 3.48 MB |
Αριθμός Εγκαταστάσεων | 193 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2021-09-14 |
Ημερομηνία Δημοσίευσης | 2020-05-08 |
Αξιολόγηση | 4.50/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | ellayang40 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/yinglan98/chrome-ext---sticky |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "stickynote tab", "version": "1.1", "description": "override the new tab page so that user can create sticky notes to take notes", "permissions": [ "storage", "tabs" ], "manifest_version": 2, "chrome_url_overrides": { "newtab": "dis_quill_1.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "images\/sticky_icon_16.png", "48": "images\/sticky_icon_48.png", "128": "images\/sticky_icon_128.png" } } |