Textnote

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

什么是Textnote?

Textnote是由http://textnote.io开发的Chrome扩展程序,该扩展的主要功能是“TextNote allows users to quickly save notes on particular websites for later viewing.”。

扩展截图

screenshot

下载Textnote扩展crx文件

下载Textnote扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}