Textnote

TextNote allows users to quickly save notes on particular websites for later viewing.

Co je Textnote?

Textnote je rozšíření Chrome vyvinuté http://textnote.io, a jeho hlavní funkcí je „TextNote allows users to quickly save notes on particular websites for later viewing.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Textnote

Stáhněte si soubory rozšíření Textnote 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í

                        TextNote allows users to quickly save notes on particular websites for later viewing.  Notes can easily be saved AND shared publicly in groups, or privately with the user themselves.

Examples of using this:
 - Recipe Sites (making notes about recipe's you make!)
 - Development blogs (Documentation on code becomes out of date so fast, join a group that helps keep this content up to date!)

It's quick and free to get started, so start saving those notes today!                    

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

Název Textnote Textnote
ID eijnedhhjnphiiipneibpchndapdkkhd
Oficiální URL https://chrome.google.com/webstore/detail/textnote/eijnedhhjnphiiipneibpchndapdkkhd
Popis TextNote allows users to quickly save notes on particular websites for later viewing.
Velikost souboru 135 KB
Počet instalací 39
Aktuální Verze 0.1.7
Poslední Aktualizace 2016-04-01
Datum Vydání 2016-04-01
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář http://textnote.io
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Textnote",
    "version": "0.1.7",
    "manifest_version": 2,
    "description": "TextNote allows users to quickly save notes on particular websites for later viewing.",
    "icons": {
        "16": "icon-16.png",
        "19": "icon.png",
        "38": "icon-38.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "TextNote.io",
        "default_popup": "popup.html"
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "*:\/\/textnote.herokuapp.com\/*",
            "*:\/\/www.textnote.io\/*"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                ".\/app\/main.css"
            ],
            "js": [
                ".\/app\/main.bundle.js"
            ],
            "exclude_matches": [
                "http:\/\/localhost:3000\/*",
                "*:\/\/textnote.herokuapp.com\/*",
                "*:\/\/www.textnote.io\/*"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/localhost:3000\/*",
                "*:\/\/textnote.herokuapp.com\/*",
                "*:\/\/www.textnote.io\/*"
            ],
            "js": [
                "auth.js"
            ]
        }
    ]
}