Nanotation Deep Linker

Shares highlights and private notes on a page through a link.

Nanotation Deep Linker là gì?

Nanotation Deep Linker là một tiện ích mở rộng Chrome được phát triển bởi Fizz Studio, và tính năng chính của nó là "Shares highlights and private notes on a page through a link.".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Nanotation Deep Linker

Tải xuống các tệp mở rộng Nanotation Deep Linker 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

                        Have you ever wanted to share a link not just to a page, but to a specific phrase or sentence in that page? And maybe add a private note, just for your friend? Nanotation Deep Linker makes that easy.

If you and your friend or colleague both use the Nanotation browser extension, you can share a "deep link" to a page. Simply select some text, right-click and choose "Copy link to selection" under the Nanotation menu, and a custom URL will be copied to your clipboard. If you send this link to someone who also has the Nanotation extension, it will highlight your selection, and scroll automagically to that section of the page, so they can read exactly what you pointed them to.

Want to add a private note, just for your friend or colleague? Just select "Add nanotation note…" and a popup will let you type in a short message. Send your custom link, and whoever clicks on it will see your selection highlighted, and can read your note by mousing over it. But only those who have the link can see what you wrote!

If the recipient doesn't have Nanotation, they'll still end up on the right page. They just won't see your highlight or your note (though we'll try to get them as close to your selection as possible).

Or maybe you don't want to send your notes to anyone at all, but just keep them for your own purposes. Nanotation can do that too, keeping track of all the notes you make, and all the notes you receive. You can easily export these as well, or wipe them clean from your browser.

We respect your privacy. Everything –your selection and your message– is embedded in the link itself. We don't collect any information from you or track your usage. We don't use advertising, so third parties can't track you either. You don't need to have an account, just the extension itself. Nothing is stored anywhere except in your own browser on your own computer, under your control. You can trust us… but you don't need to: all the source code for this extension is open source, available on Github, and you can see for yourself that we don't track you or collect any information.

WARNING: It's possible for the target site to see your links, including the selection and notes, so don't share anything truly secret.

NOTE: This is a prototype, still under development. If you find a bug, or have a feature request, please add an issue on Github, the website for this extension.

Release Notes:
* 0.5.0: This version adds the ability to store your link history in your local browser. This only stores Nanotation links, and you can turn it off at any time or clear your link history.

* 0.4.5: This is a breaking change from previous versions. This version uses a more compact URL syntax, resulting in greater stability and shorter links. I decided not to preserve backwards compatibility for better code maintenance and shorter code, and because there are so few current users, it's better to rip the bandaid early. Apologies for any inconvenience. If you've already made several links you want to keep, please contact me, and I can write a converter.                    

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

Tên Nanotation Deep Linker Nanotation Deep Linker
ID eofaggkpbjobpbeafahaflnjkmgjlipo
URL Chính Thức https://chromewebstore.google.com/detail/nanotation-deep-linker/eofaggkpbjobpbeafahaflnjkmgjlipo
Mô tả Shares highlights and private notes on a page through a link.
Kích Thước Tệp 19.11 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 0.5.0
Cập Nhật Lần Cuối 2018-01-05
Ngày Phát Hành 2018-01-05
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Fizz Studio
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://nanotation.net
URL Trang Trợ Giúp https://github.com/shepazu/nanotation
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "0.5.0",
    "description": "__MSG_extension_desc__",
    "icons": {
        "16": "link-16x16.png",
        "48": "link-48x48.png",
        "128": "link-128x128.png"
    },
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "context_menu.js",
            "storage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "nanotation.css"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "manifest_version": 2
}