Remove Selection
This extension removes selected text.
Hvad er Remove Selection?
Remove Selection er en Chrome-udvidelse udviklet af vncnt.liu, og dens hovedfunktion er "This extension removes selected text.".
Udvidelsesskærmbilleder
Download Remove Selection-udvidelses-CRX-fil
Download Remove Selection-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mcfnbphdcohjpejiocghpcajmicbjink |
| Officiel URL | https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink |
| Beskrivelse | This extension removes selected text. |
| Filstørrelse | 10.02 KB |
| Antal Installationer | 118 |
| Nuværende Version | 2.0 |
| Senest Opdateret | 2022-05-11 |
| Udgivelsesdato | 2017-08-09 |
| Bedømmelse | 4.67/5 Samlet 6 Bedømmelser |
| Udvikler | vncnt.liu |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |