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…

Qu'est-ce que StickyNotes ?

StickyNotes est une extension Chrome développée par kumabook, et sa fonction principale est "Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension StickyNotes

Téléchargez les fichiers d'extension StickyNotes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom StickyNotes StickyNotes
ID imcecnigpdchlakcljkjjhddmilnmcji
URL Officiel https://chrome.google.com/webstore/detail/stickynotes/imcecnigpdchlakcljkjjhddmilnmcji
Description Put sticky notes on the web page. Write a note on it. Jump to it. And sync stickies between devices. (chrome, firefox, firefox for…
Taille du Fichier 1.23 MB
Nombre d'Installations 694
Version Actuelle 1.2.4
Dernière Mise à Jour 2019-05-20
Date de Publication 2019-05-20
Évaluation 5.00/5 Total 3 Évaluations
Développeur kumabook
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://kumabook.github.io/stickynotes/
URL de la Page d'Aide https://github.com/kumabook/stickynotes/issues
Langues Prises en Charge 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"
    ]
}