StickyNotes

Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…

StickyNotes란 무엇입니까?

StickyNotes은(는) kumabook에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…"입니다.

확장 프로그램 스크린샷

screenshot

StickyNotes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Put sticky notes on the web page.
Write a note on it.
Jump to it.
And sync stickies between devices.
(chrome, firefox, firefox for android, ios app)                    

확장 프로그램 기본 정보

이름 StickyNotes StickyNotes
ID imcecnigpdchlakcljkjjhddmilnmcji
공식 URL https://chrome.google.com/webstore/detail/stickynotes/imcecnigpdchlakcljkjjhddmilnmcji
설명 Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…
파일 크기 1.23 MB
설치 횟수 694
현재 버전 1.2.4
최근 업데이트 2019-05-20
출시 날짜 2019-05-20
평점 5.00/5 총 3 개의 평점
개발자 kumabook
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://kumabook.github.io/stickynotes/
도움말 페이지 URL https://github.com/kumabook/stickynotes/issues
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StickyNotes",
    "version": "1.2.4",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "notifications",
        "tabs",
        "activeTab",
        "webNavigation",
        "*:\/\/stickynotes.kumabook.tokyo\/*"
    ],
    "background": {
        "scripts": [
            "background\/bundle.js"
        ]
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "css": [
                "content_scripts\/sticky-view.css"
            ],
            "js": [
                "content_scripts\/bundle.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options_ui\/index.html"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": "icons\/icon-32.png",
        "default_title": "StickyNotes",
        "default_popup": "popup\/index.html"
    },
    "sidebar_action": {
        "default_icon": "icons\/icon-32.png",
        "default_title": "StickyNotes",
        "default_panel": "sidebar\/index.html"
    },
    "commands": {
        "_execute_sidebar_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "Show stickies on sidebar"
        },
        "create_sticky": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Create a sticky in active tab"
        },
        "toggle_stickies": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "MacCtrl+Q"
            },
            "description": "Toggle visiblities of stickies in active tab"
        }
    },
    "web_accessible_resources": [
        "content_scripts\/delete.png",
        "content_scripts\/delete-hover.png",
        "content_scripts\/menu.png",
        "content_scripts\/menu-hover.png",
        "content_scripts\/edit-tag.png",
        "content_scripts\/edit-tag-hover.png",
        "content_scripts\/minimize.png",
        "content_scripts\/minimize-hover.png",
        "content_scripts\/color.png",
        "content_scripts\/page-option.png",
        "content_scripts\/back.png",
        "content_scripts\/close.png"
    ]
}