Double click to clipboard
Double click copy to clipboard
Wat is Double click to clipboard?
Double click to clipboard is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Double click copy to clipboard".
Download het CRX-bestand van de extensie Double click to clipboard
Download Double click to clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
| Naam | |
| ID | lhchgmglnhifidmalgeohaagfhmckpmo |
| Officiële URL | https://chromewebstore.google.com/detail/double-click-to-clipboard/lhchgmglnhifidmalgeohaagfhmckpmo |
| Beschrijving | Double click copy to clipboard |
| Bestandsgrootte | 29.38 KB |
| Aantal Installaties | 45 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2017-06-17 |
| Publicatiedatum | 2017-06-17 |
| Ontwikkelaar | Unknown |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Double click to clipboard",
"description": "Double click copy to clipboard",
"version": "1.0",
"icons": {
"16": "images\/empty_16.png",
"32": "images\/empty_32.png",
"48": "images\/empty_48.png",
"64": "images\/empty_64.png",
"128": "images\/empty_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_scripts\/end.js"
],
"run_at": "document_end"
}
],
"permissions": [
"http:\/\/*\/",
"https:\/\/*\/",
"clipboardRead",
"clipboardWrite"
],
"browser_action": {
"default_icon": {
"16": "images\/empty_16.png",
"32": "images\/empty_32.png",
"48": "images\/empty_48.png",
"64": "images\/empty_64.png",
"128": "images\/empty_128.png"
},
"default_title": "Double click to clipboard"
}
} | |