Sticky Notes

Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…

Was ist Sticky Notes?

Sticky Notes ist eine Chrome-Erweiterung, die von Noah Baxley entwickelt wurde, und ihr Hauptmerkmal ist "Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…".

Erweiterungsscreenshots

screenshot

Sticky Notes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sticky Notes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Produces a sticky note that sticks to the tab you are on.
The sticky note scrolls with you down or up the page.
To get one of these sticky notes press Alt n.
Currently trying to make it so that once you make a note it will appear on other tabs as well as your original tab.

This is a good item to have if you want to take notes on a webpage and then use those notes somewhere else in your browser

In the process of making things better; if customers have suggestions on how to make this better, please describe.

I will have better screenshots in next version.                    

Grundlegende Informationen zur Erweiterung

Name Sticky Notes Sticky Notes
ID gepfdgjedadbefbfnhjdhpbdannbmcnf
Offizielle URL https://chromewebstore.google.com/detail/sticky-notes/gepfdgjedadbefbfnhjdhpbdannbmcnf
Beschreibung Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…
Dateigröße 330 KB
Installationsanzahl 86
Aktuelle Version 1.1.2
Letztes Update 2018-10-23
Veröffentlichungsdatum 2018-10-22
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Noah Baxley
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "external\/jquery\/jquery.js",
                "jquery-ui.min.js",
                "script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2,
    "name": "Sticky Notes",
    "version": "1.1.2",
    "browser_action": {
        "default_popup": "Popup.html",
        "browser_style": true,
        "default_icon": "StickyNote.png",
        "default_title": "Sticky Note Adder"
    },
    "icons": {
        "48": "StickyNote.png",
        "96": "StickyNote.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "Thumbtack.png",
        "delete-sign.png"
    ]
}