HTML for Basecamp
Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Co to jest HTML for Basecamp?
HTML for Basecamp to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HTML for Basecamp
Pobierz pliki rozszerzeń HTML for Basecamp 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
We started working on Basecamp and I needed to add some basic formatting to the text of the tasks and found it almost imposible with the current editor. When I found you could paste form another source some html formatted content I decided to venture myself into making a little extension to allow html insertion directly.
Podstawowe informacje o rozszerzeniu
Nazwa | HTML for Basecamp |
ID | kmnmhcolnmikliggbninabbbiboanocj |
Oficjalny URL | https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj |
Opis | Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor. |
Rozmiar pliku | 43.82 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2012-10-23 |
Data Publikacji | 2012-10-23 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML for Basecamp", "version": "0.1", "manifest_version": 2, "description": "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.", "icons": { "128": "icon.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/basecamp.com\/*" ], "js": [ "jquery.js", "go.js", "resize.js" ], "css": [ "style.css" ] } ] } |