stickynote tab

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

Co je stickynote tab?

stickynote tab je rozšíření Chrome vyvinuté ellayang40, a jeho hlavní funkcí je „override the new tab page so that user can create sticky notes to take notes“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření stickynote tab

Stáhněte si soubory rozšíření stickynote tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        * 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.                    

Základní Informace o Rozšíření

Název stickynote tab stickynote tab
ID cpnckoglpiageliaeeopbhdahilnjeeb
Oficiální URL https://chromewebstore.google.com/detail/stickynote-tab/cpnckoglpiageliaeeopbhdahilnjeeb
Popis override the new tab page so that user can create sticky notes to take notes
Velikost souboru 3.48 MB
Počet instalací 193
Aktuální Verze 1.1
Poslední Aktualizace 2021-09-14
Datum Vydání 2020-05-08
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář ellayang40
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/yinglan98/chrome-ext---sticky
Podporované Jazyky 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"
    }
}