AnyPage Sticky Note

With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page

什么是AnyPage Sticky Note?

AnyPage Sticky Note是由https://shebao.500talk.com开发的Chrome扩展程序,该扩展的主要功能是“With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page”。

扩展截图

screenshot
screenshot

下载AnyPage Sticky Note扩展crx文件

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

扩展使用说明

                        with this ext, you can make notes on any web page, any position, and able to select text, also sticky note is resizeable. when you open that page again, the notes get loaded automaticly.
Hi,

I did a search on all 'notes' related extension here, and find all of them can only post in the popup window, not on web page. so i make this:

the features:
1) able to create note on any webpage
2) all notes get saved in real time.
3) view all saved  by click ⚙️.
4) Sticky note is able to resize.
5) Longpress X, can close all note on current page

what come next
6) auto save to your google doc.
7) sync note to notion.                    

扩展基本信息

名称 AnyPage Sticky Note AnyPage Sticky Note
ID fphhjfibjcbdifebdmpcdahnnknedjch
官方URL https://chromewebstore.google.com/detail/anypage-sticky-note/fphhjfibjcbdifebdmpcdahnnknedjch
简介 With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page
文件大小 89.74 KB
安装次数 508
当前版本 0.1.6
更新时间 2023-12-28
上架时间 2021-03-22
评分 4.67/5 共6次评分
开发者 https://shebao.500talk.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.freeprivacypolicy.com/live/21d27cb1-0bd3-4a24-8625-b96cc58fbe8a
支持的语言 en
manifest.json
{
    "manifest_version": 3,
    "content_security_policy": {
        "content_security_policy": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "asset\/background.js"
    },
    "action": {
        "default_icon": "asset\/images\/note-icon-128.png",
        "default_title": "AnyPage Sticky Note"
    },
    "content_scripts": [
        {
            "css": [
                "asset\/stickies.css"
            ],
            "js": [
                "asset\/stickies.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "description": "With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page",
    "icons": {
        "32": "asset\/images\/note-32.png",
        "48": "asset\/images\/note-icon-128.png",
        "128": "asset\/images\/note-icon-128.png"
    },
    "name": "AnyPage Sticky Note",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "notifications"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.6",
    "web_accessible_resources": [
        {
            "resources": [
                "asset\/images\/*.png",
                "asset\/images\/*.gif"
            ],
            "matches": [
                ""
            ]
        }
    ]
}