stickynote tab
override the new tab page so that user can create sticky notes to take notes
Co to jest stickynote tab?
stickynote tab to rozszerzenie Chrome opracowane przez ellayang40, a jego główną funkcją jest „override the new tab page so that user can create sticky notes to take notes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia stickynote tab
Pobierz pliki rozszerzeń stickynote tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
* 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.
Podstawowe informacje o rozszerzeniu
Nazwa | stickynote tab |
ID | cpnckoglpiageliaeeopbhdahilnjeeb |
Oficjalny URL | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
Opis | override the new tab page so that user can create sticky notes to take notes |
Rozmiar pliku | 3.48 MB |
Liczba instalacji | 193 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2021-09-14 |
Data Publikacji | 2020-05-08 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | ellayang40 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/yinglan98/chrome-ext---sticky |
Obsługiwane Języki | 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" } } |