URL Copy
This extension will copy the current tab's URL to your clipboard.
Hvad er URL Copy?
URL Copy er en Chrome-udvidelse udviklet af tubaguy50035, og dens hovedfunktion er "This extension will copy the current tab's URL to your clipboard.".
Download URL Copy-udvidelses-CRX-fil
Download URL Copy-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
This extension allows you to copy the URL of your active tab with one click!
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | ipdfpenpabfdkmiegmhmfpoadnbddelj |
Officiel URL | https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj |
Beskrivelse | This extension will copy the current tab's URL to your clipboard. |
Filstørrelse | 9.95 KB |
Antal Installationer | 103 |
Nuværende Version | 1.0 |
Senest Opdateret | 2013-12-11 |
Udgivelsesdato | 2013-12-11 |
Bedømmelse | 3.67/5 Samlet 3 Bedømmelser |
Udvikler | tubaguy50035 |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |