Quick Notes
Make and access notes quickly, at the launch of a new tab.
Co to jest Quick Notes?
Quick Notes to rozszerzenie Chrome opracowane przez sagar0907, a jego główną funkcją jest „Make and access notes quickly, at the launch of a new tab.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Quick Notes
Pobierz pliki rozszerzeń Quick Notes 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
Quick Notes lets you make notes on the fly which are accessible at the launch a new tab. It helps you organise your notes and colour code them as you please. It lets you add rich formatted text, images and links. Also drag and drop pretty much any thing you find interesting while you browse the internet. You can contribute at https://github.com/sagar0907/quickNotes. Feature requests are welcome.
Podstawowe informacje o rozszerzeniu
Nazwa | Quick Notes |
ID | igjmkejolekkpjnaeknjgaghhlhhekle |
Oficjalny URL | https://chromewebstore.google.com/detail/quick-notes/igjmkejolekkpjnaeknjgaghhlhhekle |
Opis | Make and access notes quickly, at the launch of a new tab. |
Rozmiar pliku | 1.03 MB |
Liczba instalacji | 1,883 |
Aktualna Wersja | 0.0.1.5 |
Ostatnia Aktualizacja | 2019-03-08 |
Data Publikacji | 2019-03-08 |
Ocena | 4.00/5 Łącznie 9 Oceny |
Deweloper | sagar0907 |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Notes", "short_name": "Quick Notes", "description": "Make and access notes quickly, at the launch of a new tab.", "version": "0.0.1.5", "browser_action": { "default_icon": "images\/Quick_Note_Icon_48.png", "default_title": "Quick Notes" }, "icons": { "16": "images\/Quick_Note_Icon_16.png", "48": "images\/Quick_Note_Icon_48.png", "128": "images\/Quick_Note_Icon_128.png" }, "chrome_url_overrides": { "newtab": "html\/newtab.html" }, "permissions": [ "tabs", "activeTab", "background", "contextMenus", "storage", "clipboardRead", "clipboardWrite" ], "background": { "page": "html\/background.html", "persistent": true } } |