Render Selection
Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…
Co to jest Render Selection?
Render Selection to rozszerzenie Chrome opracowane przez michaelstratman, a jego główną funkcją jest „Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Render Selection
Pobierz pliki rozszerzeń Render Selection 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
Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have text selected and you right click you can render the selected text as HTML in a new tab. Also you can right click anywhere and you'll have the option to render your clipboard in a new tab as well. Use it when viewing example html snippets on sites like stackoverflow or other sites.
Podstawowe informacje o rozszerzeniu
Nazwa | Render Selection |
ID | jcmgcgddggonhfmkjkogkmifcfmkmgfg |
Oficjalny URL | https://chromewebstore.google.com/detail/render-selection/jcmgcgddggonhfmkjkogkmifcfmkmgfg |
Opis | Render selected text as HTML using Render Selection. This extension adds a a menu item to the context menu so that when you have… |
Rozmiar pliku | 351 KB |
Liczba instalacji | 18 |
Aktualna Wersja | 0.5 |
Ostatnia Aktualizacja | 2013-05-08 |
Data Publikacji | 2013-05-08 |
Ocena | 4.00/5 Łącznie 3 Oceny |
Deweloper | michaelstratman |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/michaelstratman/RenderSelection |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Render Selection", "permissions": [ "contextMenus", "tabs", "clipboardRead", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "0.5", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "icon.png" }, "manifest_version": 2 } |