Lorem Pastum
Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu
Co to jest Lorem Pastum?
Lorem Pastum to rozszerzenie Chrome opracowane przez http://www.keybored.fr, a jego główną funkcją jest „Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Lorem Pastum
Pobierz pliki rozszerzeń Lorem Pastum 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 app provides 3 types of Lorem Ipsum text, available from Chrome's context menu (right click) : a single sentence, a whole small paragraph and a long paragraph. Also works with javascript editors like tinyMCE and CKeditor, and so it's working with Wordpress ! This project is also available on github, and open to pull requests : https://github.com/tameroski/Lorem-Pastum
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | cgnjnijaeekmclemhnnkcffcdajaknab |
Oficjalny URL | https://chrome.google.com/webstore/detail/lorem-pastum/cgnjnijaeekmclemhnnkcffcdajaknab |
Opis | Fill textareas and input fields with Lorem Ipsum text straight from Chrome's context menu |
Rozmiar pliku | 15.79 KB |
Liczba instalacji | 45 |
Aktualna Wersja | 1.1.3 |
Ostatnia Aktualizacja | 2017-08-28 |
Data Publikacji | 2017-08-28 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | http://www.keybored.fr |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "default_locale": "en", "permissions": [ "clipboardRead", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |