URL Copy
This extension will copy the current tab's URL to your clipboard.
Was ist URL Copy?
URL Copy ist eine Chrome-Erweiterung, die von tubaguy50035 entwickelt wurde, und ihr Hauptmerkmal ist "This extension will copy the current tab's URL to your clipboard.".
URL Copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie URL Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension allows you to copy the URL of your active tab with one click! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ipdfpenpabfdkmiegmhmfpoadnbddelj |
| Offizielle URL | https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj |
| Beschreibung | This extension will copy the current tab's URL to your clipboard. |
| Dateigröße | 9.95 KB |
| Installationsanzahl | 103 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2013-12-11 |
| Veröffentlichungsdatum | 2013-12-11 |
| Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
| Entwickler | tubaguy50035 |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "URL Copy",
"description": "This extension will copy the current tab's URL to your clipboard.",
"version": "1.0",
"permissions": [
"tabs",
"clipboardWrite"
],
"background": {
"scripts": [
"bg.js"
],
"pages": [
"background.html"
]
},
"browser_action": {
"default_title": "",
"default_icon": "19.png"
},
"icons": {
"128": "icon.png"
}
} | |