Web Notes
Allows user to stick notes for specific url.
Wat is Web Notes?
Web Notes is een Chrome-extensie ontwikkeld door https://sunnysinghdev.blogspot.com, en de belangrijkste functie is "Allows user to stick notes for specific url.".
Extensie Screenshots
Download het CRX-bestand van de extensie Web Notes
Download Web Notes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.
Basisinformatie over de Extensie
Naam | Web Notes |
ID | lhoaebkagfpaglcedmehlkbmchagmimj |
Officiële URL | https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj |
Beschrijving | Allows user to stick notes for specific url. |
Bestandsgrootte | 37.45 KB |
Aantal Installaties | 254 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2018-01-19 |
Publicatiedatum | 2018-01-18 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://sunnysinghdev.blogspot.com |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Notes", "version": "0.1", "description": "Allows user to stick notes for specific url.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ], "permissions": [ "storage", "tabs", "activeTab" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "commands": { "toggle-feature": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "Toggle the helpcenter screen", "global": true }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+9", "mac": "Command+Shift+9", "chromeos": "Ctrl+Shift+9", "linux": "Ctrl+Shift+9" } } } } |