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文件

下载StickyNotes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装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 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"
    ]
}