Anchor Notes

A simple notepad specific to each website you visit.

Anchor Notes là gì?

Anchor Notes là một tiện ích mở rộng Chrome được phát triển bởi gingerbeard.dev, và tính năng chính của nó là "A simple notepad specific to each website you visit.".

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

screenshot
screenshot

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

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

                        Anchor Notes is a simple, streamlined, page-specific notepad.
 
Find a recipe online?
Made some changes you want to remember next time? 
Drop an anchor!

Pull up the Anchor Notes notepad by clicking the anchor icon in your browser, and jot down your notes. The next time you want to revisit that recipe, pull up the Anchor Notes notepad, and magically, your notes will be there. No need to remember where you saved the file. Your notes are specific to you and to the page you were on when you made them.

Visting a friend, and want to show them your recipe changes? If they also have Anchor Notes, just log into their Chrome browser with your credentials, and visit that recipe page. YOUR notes will be there! Even if your friend has taken their own notes on that page!

I designed this extension with the mantra, "Do one thing, and do it well". Therefore, Anchor Notes doesn't have a lot of bells and whistles. Here's a short list of the ones it does have:

- Autosave - Whenever you stop typing for two seconds, Anchor Notes updates your saved note. No need to click anything!
- Speech To Text - Don't feel like typing? Just click the microphone, and say your notes. The HTML5 Speech To Text API handles the rest!
- Copy to Clipboard - Copy the entire note to the clipboard with just one click of the clipboard icon!
- Toggle Position and Opacity - Is the note in the way of your reading? Don't want to hide it completely? Simply click the side-pointing arrow to toggle the note to the other side of the page, or click the Opacity toggle at the bottom of the note to make the note transparent!

NOTE: Please do not use this app for storing passwords or state secrets. It's purpose is convenience, not security!

Update - V2.3.0 -  03/15/2017
Added fallback to save notes to localStorage if connection to the db should ever fail. Also added basic protection to the routes, so you will no longer be able to save to the db if you do not upgrade. So, please upgrade!                    

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

Tên Anchor Notes Anchor Notes
ID hhodmoangjcfhlkeoabmaaimejpdmkhl
URL Chính Thức https://chrome.google.com/webstore/detail/anchor-notes/hhodmoangjcfhlkeoabmaaimejpdmkhl
Mô tả A simple notepad specific to each website you visit.
Kích Thước Tệp 99.25 KB
Số Lần Cài Đặt 218
Phiên Bản Hiện Tại 2.4.4
Cập Nhật Lần Cuối 2017-03-23
Ngày Phát Hành 2017-03-23
Đánh Giá 4.33/5 Tổng số 12 Đánh Giá
Nhà Phát Triển gingerbeard.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anchor Notes",
    "description": "A simple notepad specific to each website you visit.",
    "version": "2.4.4",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwgo\/G08GwvBWm7e3Ht0odqp1n5PhzGTl+V769enlA4UNjGUyMrHY4+0sGiWWFJkwZ1tgQzG3wCYg87Grx\/PlRUfhU55FhDvPvOipUJppWZEMhv\/\/5HIRZ49Q2ndqZKoI6D7BsPDgMbpjOjNaaotn3k0O6kCmcweLJi309SOBm13pvziAcHsI09ftDIy7E4nCifuksT0l0pW5ek6zt4kCSwn5qZSALu4XwcYXDTa9R8LCLbB6rZOD3PFq0pnG+ylahrxRImCVqpl2vbrT06sqwUfYhCwxmaTUd2Jq\/3pybo7WpnP9Y8WdO1DQaCRzTr9mS3wZkv96gKAcWtxuowX+tQIDAQAB",
    "icons": {
        "16": "\/img\/browser-icon_16x16.png",
        "48": "\/img\/app-icon_48x48.png",
        "128": "\/img\/webstore-button_128x128.png"
    },
    "browser_action": {
        "default_icon": "\/img\/browser-icon_16x16.png",
        "default_title": "Show\/Hide Note"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "\/css\/ch_note_styles.css"
            ],
            "js": [
                "\/js\/jquery-3.1.1.js",
                "\/js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "identity",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/notes-everywhere-db.herokuapp.com\/*"
    ],
    "oauth2": {
        "client_id": "316026697943-b09mq0tj7t7ro6e72tcvir530dkaq423.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login"
        ]
    }
}