Mini Sticky Notes

Helps to quickly take a note of anything, anytime.

Vad är Mini Sticky Notes?

Mini Sticky Notes är en Chrome-tillägg utvecklad av Jenis Patel, och dess huvudfunktion är "Helps to quickly take a note of anything, anytime.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Mini Sticky Notes-förlängningens CRX-fil

Ladda ner Mini Sticky Notes-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

                        Sometimes we need to take a quick notes of points discussed during any meeting or a call so this extension will help you out there.

It is just a board for you where you can add your daily important points that need to be focused on.

RECENT UPDATES:

** Latest Release 1.3.2 (March 2018) **

1. Minor UI changes.

** Update 1.3.1 (March 2018) **

1. Support for auto saving has been added.                    

Grundläggande Information om Tillägg

Namn Mini Sticky Notes Mini Sticky Notes
ID ghhhlhbkkchjfnnliacdpmfjjgpmkbpd
Officiell webbadress https://chromewebstore.google.com/detail/mini-sticky-notes/ghhhlhbkkchjfnnliacdpmfjjgpmkbpd
Beskrivning Helps to quickly take a note of anything, anytime.
Filstorlek 39.92 KB
Antal Installationer 13,310
Aktuell Version 1.3.2
Senast Uppdaterad 2018-03-12
Publiceringsdatum 2018-03-12
Betyg 4.67/5 Totalt 24 Betyg
Utvecklare Jenis Patel
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mini Sticky Notes",
    "description": "Helps to quickly take a note of anything, anytime.",
    "version": "1.3.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Mini Sticky Notes",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.min.js",
                "js\/custom.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}