KB Sticky Notes
Sticky notes while you browse the web.
Was ist KB Sticky Notes?
KB Sticky Notes ist eine Chrome-Erweiterung, die von Karl Balemi entwickelt wurde, und ihr Hauptmerkmal ist "Sticky notes while you browse the web.".
Erweiterungsscreenshots
KB Sticky Notes-Erweiterungs-CRX-Datei herunterladen
Laden Sie KB 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
PLEASE refresh your tabs after installation to load Sticky Notes. Open up your sticky notes while browsing the web. Drag around the page to organize and right click to select your favourite colours. Sign in to chrome to keep your sticky notes synchronized between your devices at work and at home. Please note that sticky notes aren't able to appear on chrome:// or new tab pages.
Grundlegende Informationen zur Erweiterung
Name | |
ID | beboamcablfglipfloiafefjobjdlclo |
Offizielle URL | https://chrome.google.com/webstore/detail/kb-sticky-notes/beboamcablfglipfloiafefjobjdlclo |
Beschreibung | Sticky notes while you browse the web. |
Dateigröße | 211 KB |
Installationsanzahl | 4,645 |
Aktuelle Version | 1.26 |
Letztes Update | 2016-01-11 |
Veröffentlichungsdatum | 2016-01-11 |
Bewertung | 2.54/5 Insgesamt 78 Bewertungen |
Entwickler | Karl Balemi |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "KB Sticky Notes", "version": "1.26", "manifest_version": 2, "description": "Sticky notes while you browse the web.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/app.css" ], "js": [ "bower_components\/jquery\/dist\/jquery.js", "bower_components\/jquery-ui\/ui\/jquery-ui.js", "scripts\/sticky-notes.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Sticky Notes" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "web_accessible_resources": [ "styles\/images\/*.png" ] } |