Paste From Context Menu
This extension allows you to save predefined snippets and paste them to text inputs using context menu.
Co to jest Paste From Context Menu?
Paste From Context Menu to rozszerzenie Chrome opracowane przez coder, a jego główną funkcją jest „This extension allows you to save predefined snippets and paste them to text inputs using context menu.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Paste From Context Menu
Pobierz pliki rozszerzeń Paste From Context Menu 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
Podstawowe informacje o rozszerzeniu
Nazwa | Paste From Context Menu |
ID | ihfogeehoikadinpdoeapemeolcppfjf |
Oficjalny URL | https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf |
Opis | This extension allows you to save predefined snippets and paste them to text inputs using context menu. |
Rozmiar pliku | 20.88 KB |
Liczba instalacji | 3,181 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2016-10-14 |
Data Publikacji | 2016-10-14 |
Ocena | 3.74/5 Łącznie 23 Oceny |
Deweloper | coder |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paste From Context Menu", "short_name": "pastefromcontextmenu", "version": "1.0.1", "author": "Coder", "description": "This extension allows you to save predefined snippets and paste them to text inputs using context menu.", "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "contextMenus", "clipboardRead", "clipboardWrite", "activeTab", "storage" ], "browser_action": { "default_title": "Paste From Context Menu", "default_icon": "icons\/48x48.png", "default_popup1": "popup.html" } } |