Beanote - Note Taking on Web Pages

This extension helps you to highlight, take notes and annotate on web pages.

什麼是Beanote - Note Taking on Web Pages?

Beanote - Note Taking on Web Pages是由Beanote開發的Chrome擴展程式,該擴展的主要功能是“This extension helps you to highlight, take notes and annotate on web pages.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Beanote - Note Taking on Web Pages擴展crx文件

下載Beanote - Note Taking on Web Pages擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Beanote helps you highlight sentences and images on any part of any web pages. You can choose different highlight color, write comments on each highlight you made, or create sticky notes anywhere on a web page. Beanote saves your notes automatically and provides a dashboard to view and search all your notes quickly.

Features: 

- Highlight any text or image by selecting
- Multiple color choices
- Write comments or sticky notes with an rich-content editor
- A dashboard to manage all your notes
- Export your notes as Evernote, Word or HTML files. 
- Free


**Updates at 2020/4/9**
-  Fix a problem that causes blank web pages and missing notes in some newer versions of chrome. 


**Limitation**

- Highlights may not be able to survive page reload in frequently changing pages, like facebook.com.                    

擴展基本資訊

名稱 Beanote - Note Taking on Web Pages Beanote - Note Taking on Web Pages
ID nikccehomlnjkmgmhnieecolhgdafajb
官方網址 https://chromewebstore.google.com/detail/beanote-note-taking-on-we/nikccehomlnjkmgmhnieecolhgdafajb
簡介 This extension helps you to highlight, take notes and annotate on web pages.
檔案大小 3.67 MB
安裝次數 35,690
目前版本 1.5.5
更新時間 2021-10-12
上架時間 2020-06-07
評分 4.15/5 共 338 次評分
開發者 Beanote
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beanote - Note Taking on Web Pages",
    "short_name": "Beanote",
    "version": "1.5.5",
    "manifest_version": 2,
    "description": "This extension helps you to highlight, take notes and annotate on web pages.",
    "icons": {
        "128": "public\/icons\/icon128.png",
        "16": "public\/icons\/icon16.png",
        "48": "public\/icons\/icon48.png"
    },
    "default_locale": "en",
    "permissions": [
        "",
        "tabs",
        "contextMenus",
        "storage",
        "clipboardWrite"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "public\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "public\/foreground.js"
            ],
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "Beanote",
        "default_icon": "public\/icons\/icon-chrome.png",
        "default_popup": "public\/actionPage\/index.html"
    },
    "web_accessible_resources": [
        "public\/*",
        "public\/images\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}