Paste From Context Menu
This extension allows you to save predefined snippets and paste them to text inputs using context menu.
Cos'è Paste From Context Menu?
Paste From Context Menu è un'estensione di Chrome sviluppata da coder, e la sua funzione principale è "This extension allows you to save predefined snippets and paste them to text inputs using context menu.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Paste From Context Menu
Scarica i file di estensione Paste From Context Menu in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | ihfogeehoikadinpdoeapemeolcppfjf |
| URL Ufficiale | https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf |
| Descrizione | This extension allows you to save predefined snippets and paste them to text inputs using context menu. |
| Dimensione del File | 20.88 KB |
| Conteggio Installazioni | 3,181 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2016-10-14 |
| Data di Pubblicazione | 2016-10-14 |
| Valutazione | 3.74/5 Totale 23 Valutazioni |
| Sviluppatore | coder |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |