NotaBene

Put sticky notes on web pages

Co to jest NotaBene?

NotaBene to rozszerzenie Chrome opracowane przez NB, a jego główną funkcją jest „Put sticky notes on web pages”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NotaBene

Pobierz pliki rozszerzeń NotaBene 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

                        NotaBene is a Chrome extension that allows you to put sticky notes on web pages. The notes are saved automatically and remain until you decide to remove them, even if you restart your browser. To use NotaBene, click the yellow N in the upper right of your browser. A note will appear at the top right of the page, which you can move, resize, and write your notes in!                    

Podstawowe informacje o rozszerzeniu

Nazwa NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
Oficjalny URL https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Opis Put sticky notes on web pages
Rozmiar pliku 95.19 KB
Liczba instalacji 52
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-09-26
Data Publikacji 2016-09-26
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper NB
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NotaBene",
    "version": "0.1",
    "description": "Put sticky notes on web pages",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "css": [
                "note_style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "run_at": "document_idle"
    },
    "browser_action": {
        "default_icon": {
            "19": "nb_icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "nb_icon.png",
        "48": "nb_icon.png",
        "128": "nb_icon.png"
    }
}