HackMDir
Manage your HackMD notes in a better way.
Co to jest HackMDir?
HackMDir to rozszerzenie Chrome opracowane przez afcidk, a jego główną funkcją jest „Manage your HackMD notes in a better way.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HackMDir
Pobierz pliki rozszerzeń HackMDir w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This user-friendly extension helps manage your HackMD notes in a better way! This extension supports 1. Directory(grouped) structures in managing notes 2. Real-time rendered result from search bar 3. Bulk remove notes/histories 4. Bulk change note permissions 5. One-click bookmode export If you think this extension needs more functions and could be better, please feel free to open an issue or make pull requests! Github: https://github.com/afcidk/HackMDir
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | mpkcjcncagplbnlkcnplogaiiabhieon |
Oficjalny URL | https://chrome.google.com/webstore/detail/hackmdir/mpkcjcncagplbnlkcnplogaiiabhieon |
Opis | Manage your HackMD notes in a better way. |
Rozmiar pliku | 266 KB |
Liczba instalacji | 93 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2019-06-12 |
Data Publikacji | 2019-06-12 |
Ocena | 5.00/5 Łącznie 5 Oceny |
Deweloper | afcidk |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HackMDir", "version": "1.0.2", "description": "Manage your HackMD notes in a better way.", "permissions": [ "activeTab", "declarativeContent", "storage", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/hackmd.io\/", "https:\/\/hackmd.io\/recent" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "manifest_version": 2 } |