Remove Selection
This extension removes selected text.
Cos'è Remove Selection?
Remove Selection è un'estensione di Chrome sviluppata da vncnt.liu, e la sua funzione principale è "This extension removes selected text.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remove Selection
Scarica i file di estensione Remove Selection 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
After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.
Informazioni di Base sull'Estensione
Nome | Remove Selection |
ID | mcfnbphdcohjpejiocghpcajmicbjink |
URL Ufficiale | https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink |
Descrizione | This extension removes selected text. |
Dimensione del File | 10.02 KB |
Conteggio Installazioni | 118 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2022-05-11 |
Data di Pubblicazione | 2017-08-09 |
Valutazione | 4.67/5 Totale 6 Valutazioni |
Sviluppatore | vncnt.liu |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove Selection", "description": "This extension removes selected text.", "version": "2.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_title": "Remove Selection", "default_icon": "images\/icon16.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "contextMenus" ] } |