Textnote

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

Textnote क्या है?

Textnote http://textnote.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "TextNote allows users to quickly save notes on particular websites for later viewing."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Textnote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Textnote Textnote
ID eijnedhhjnphiiipneibpchndapdkkhd
आधिकारिक URL https://chrome.google.com/webstore/detail/textnote/eijnedhhjnphiiipneibpchndapdkkhd
विवरण TextNote allows users to quickly save notes on particular websites for later viewing.
फ़ाइल का आकार 135 KB
स्थापना संख्या 39
वर्तमान संस्करण 0.1.7
अंतिम अपडेट 2016-04-01
प्रकाशन तिथि 2016-04-01
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर http://textnote.io
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}