Note To Self (NTS)

A simple web cliping / highlighting / notation tool for Google Chrome

Note To Self (NTS) là gì?

Note To Self (NTS) là một tiện ích mở rộng Chrome được phát triển bởi http://lucidmoon.co.uk, và tính năng chính của nó là "A simple web cliping / highlighting / notation tool for Google Chrome".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Note To Self (NTS)

Tải xuống các tệp mở rộng Note To Self (NTS) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A minimal web clipping / text highlighting / notation tool.  Clip text, links, images, HTML5 video & audio - all manageable from a simple central interface.  Now leveraging chrome.storage.sync for cross browser syncing via your Google account.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Note To Self (NTS) Note To Self (NTS)
ID emphjhogfehclnepkbghhnbbgjekfjme
URL Chính Thức https://chrome.google.com/webstore/detail/note-to-self-nts/emphjhogfehclnepkbghhnbbgjekfjme
Mô tả A simple web cliping / highlighting / notation tool for Google Chrome
Kích Thước Tệp 72.37 KB
Số Lần Cài Đặt 53
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2014-10-02
Ngày Phát Hành 2014-10-02
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://lucidmoon.co.uk
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Note To Self (NTS)",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "A simple web cliping \/ highlighting \/ notation tool for Google Chrome",
    "homepage_url": "http:\/\/www.lucidmoon.co.uk",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/lib\/lodash.js",
            "js\/lib\/nts.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/jquery.highlight.js",
                "js\/lib\/lodash.js",
                "js\/lib\/nts.js",
                "js\/lib\/nts.content.js",
                "js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "name": "Note to self",
        "default_icon": {
            "19": "icon_19.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}