Take Note

An extension to help you take notes on long articles in your browser. Recognizes and formats code.

Co to jest Take Note?

Take Note to rozszerzenie Chrome opracowane przez sarahhubschmail, a jego główną funkcją jest „An extension to help you take notes on long articles in your browser. Recognizes and formats code.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Take Note

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

                        An app that helps you take notes on articles, blog posts, or documentation.

Select the text you want to save, right click, and press 'Take Note'. You can go back and edit or delete any notes you take.

The extension also recognizes and formats any code you save as a note.                    

Podstawowe informacje o rozszerzeniu

Nazwa Take Note Take Note
ID jkhfbnadhkkefjioelljpcmkgnoamakg
Oficjalny URL https://chrome.google.com/webstore/detail/take-note/jkhfbnadhkkefjioelljpcmkgnoamakg
Opis An extension to help you take notes on long articles in your browser. Recognizes and formats code.
Rozmiar pliku 1.87 MB
Liczba instalacji 162
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2017-08-10
Data Publikacji 2017-08-10
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper sarahhubschmail
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Take Note",
    "description": "An extension to help you take notes on long articles in your browser. Recognizes and formats code.",
    "background": {
        "scripts": [
            "js\/jquery-3.2.1.js",
            "js\/background.js"
        ],
        "css": [
            "style.css"
        ]
    },
    "version": "0.0.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Take Note",
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "icons": {
        "16": "images\/icon-bitty.png",
        "48": "images\/icon-bitty.png",
        "128": "images\/icon-bitty.png"
    }
}