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

O que é AnyPage Sticky Note?

AnyPage Sticky Note é uma extensão do Chrome desenvolvida por https://shebao.500talk.com, e sua principal característica é "With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão AnyPage Sticky Note

Baixe arquivos de extensão AnyPage Sticky Note no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AnyPage Sticky Note AnyPage Sticky Note
ID fphhjfibjcbdifebdmpcdahnnknedjch
URL Oficial https://chromewebstore.google.com/detail/anypage-sticky-note/fphhjfibjcbdifebdmpcdahnnknedjch
Descrição With AnyPage Sticky Note, You can make resizeable sticker notes card on any webpage, notes will loaded again when you reopen page
Tamanho do Arquivo 89.74 KB
Contagem de Instalações 508
Versão Atual 0.1.6
Última Atualização 2023-12-28
Data de Publicação 2021-03-22
Classificação 4.67/5 Total de 6 Avaliações
Desenvolvedor https://shebao.500talk.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.freeprivacypolicy.com/live/21d27cb1-0bd3-4a24-8625-b96cc58fbe8a
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}