stickynote tab
override the new tab page so that user can create sticky notes to take notes
Vad är stickynote tab?
stickynote tab är en Chrome-tillägg utvecklad av ellayang40, och dess huvudfunktion är "override the new tab page so that user can create sticky notes to take notes".
Tilläggsskärmbilder
Ladda ner stickynote tab-förlängningens CRX-fil
Ladda ner stickynote tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
* 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. Grundläggande Information om Tillägg
| Namn | |
| ID | cpnckoglpiageliaeeopbhdahilnjeeb |
| Officiell webbadress | https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb |
| Beskrivning | override the new tab page so that user can create sticky notes to take notes |
| Filstorlek | 3.48 MB |
| Antal Installationer | 193 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2021-09-14 |
| Publiceringsdatum | 2020-05-08 |
| Betyg | 4.50/5 Totalt 2 Betyg |
| Utvecklare | ellayang40 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/yinglan98/chrome-ext---sticky |
| Stödda Språk | 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"
}
} | |