stickynote tab

override the new tab page so that user can create sticky notes to take notes

Hvad er stickynote tab?

stickynote tab er en Chrome-udvidelse udviklet af ellayang40, og dens hovedfunktion er "override the new tab page so that user can create sticky notes to take notes".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download stickynote tab-udvidelses-CRX-fil

Download stickynote tab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        * 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æggende oplysninger om udvidelsen

Navn stickynote tab stickynote tab
ID cpnckoglpiageliaeeopbhdahilnjeeb
Officiel URL https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb
Beskrivelse override the new tab page so that user can create sticky notes to take notes
Filstørrelse 3.48 MB
Antal Installationer 193
Nuværende Version 1.1
Senest Opdateret 2021-09-14
Udgivelsesdato 2020-05-08
Bedømmelse 4.50/5 Samlet 2 Bedømmelser
Udvikler ellayang40
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/yinglan98/chrome-ext---sticky
Understøttede Sprog 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"
    }
}