Scrapbox List Marker
A chrome extension for Customizing list marker of Scrapbox.
¿Qué es Scrapbox List Marker?
Scrapbox List Marker es una extensión de Chrome desarrollada por penicillin0, y su función principal es "A chrome extension for Customizing list marker of Scrapbox.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Scrapbox List Marker
Descarga archivos de extensión Scrapbox List Marker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
【About this extension】 This is a third party extension for Scrapbox users. Currently, Scrapbox allows you to customize the design to your liking by writing CSS. However, writing CSS is time-consuming and complicated to change. This extension allows you to change Scrapbox's list markers to your liking using a GUI-based interface. 【How to use】 - Click on the extension icon and a popup will appear. - When you click the extension icon, a pop-up window will appear. You can customize the list markers (color changeable) by selecting one for each paragraph. - Inserting an indent line (color changeable) makes it easier to understand the indent correspondence you are writing. - The demonstration at the bottom of the screen allows you to see how it actually appears. ※ If you want to return to the default settings, please disable or delete the extension. ※ This is an unofficial extension, so please use it at your own risk. Scrapbox official: https://scrapbox.io/product Source code: https://github.com/penicillin0/scrapbox-list-marker If you have any bugs or requests for additional features, please send them to https://github.com/penicillin0/scrapbox-list-marker/issues
Información Básica de la Extensión
Nombre | Scrapbox List Marker |
ID | blogedecchmdohakakhmboefiiendbec |
URL Oficial | https://chromewebstore.google.com/detail/scrapbox-list-marker/blogedecchmdohakakhmboefiiendbec |
Descripción | A chrome extension for Customizing list marker of Scrapbox. |
Tamaño del Archivo | 1.58 MB |
Cantidad de Instalaciones | 111 |
Versión Actual | 1.7.0 |
Última Actualización | 2022-05-10 |
Fecha de Publicación | 2021-11-17 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | penicillin0 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/penicillin0/scrapbox-list-marker |
Idiomas Soportados | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scrapbox List Marker", "description": "__MSG_appDescription__", "version": "1.7.0", "default_locale": "en", "manifest_version": 3, "action": { "default_title": "Scrapbox List Marker", "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "https:\/\/scrapbox.io\/*\/*" ], "js": [ "contentScriptDist.js" ] } ], "permissions": [ "activeTab", "storage" ], "icons": { "16": "images\/16icon.png", "48": "images\/48icon.png", "128": "images\/128icon.png" } } |