Paste Long Text
A chrome extension to paste your long text in just single click.
Co to jest Paste Long Text?
Paste Long Text to rozszerzenie Chrome opracowane przez Rajendra Arora, a jego główną funkcją jest „A chrome extension to paste your long text in just single click.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Paste Long Text
Pobierz pliki rozszerzeń Paste Long Text 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
Paste your long text in just one click.
Podstawowe informacje o rozszerzeniu
Nazwa | Paste Long Text |
ID | dhonighchmchkhghhmnegegkciogailm |
Oficjalny URL | https://chromewebstore.google.com/detail/paste-long-text/dhonighchmchkhghhmnegegkciogailm |
Opis | A chrome extension to paste your long text in just single click. |
Rozmiar pliku | 609 KB |
Liczba instalacji | 82 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2017-11-03 |
Data Publikacji | 2017-11-02 |
Ocena | 4.50/5 Łącznie 4 Oceny |
Deweloper | Rajendra Arora |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.rajendraarora.com |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paste Long Text", "description": "A chrome extension to paste your long text in just single click.", "version": "1.2", "browser_action": { "default_icon": "assets\/icons\/48x48.png", "default_popup": "index.html", "default_title": "Paste Long Text" }, "background": { "scripts": [ "assets\/js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "assets\/js\/jquery.js", "assets\/js\/content.js" ] } ], "permissions": [ "contextMenus" ], "icons": { "16": "assets\/icons\/16x16.png", "48": "assets\/icons\/48x48.png", "128": "assets\/icons\/128x128.png" } } |