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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}