URL Copy

This extension will copy the current tab's URL to your clipboard.

Apa itu URL Copy?

URL Copy adalah ekstensi Chrome yang dikembangkan oleh tubaguy50035, dan fitur utamanya adalah "This extension will copy the current tab's URL to your clipboard.".

Unduh Berkas CRX Ekstensi URL Copy

Unduh file ekstensi URL Copy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This extension allows you to copy the URL of your active tab with one click!                    

Informasi Dasar Ekstensi

Nama URL Copy URL Copy
ID ipdfpenpabfdkmiegmhmfpoadnbddelj
URL Resmi https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj
Deskripsi This extension will copy the current tab's URL to your clipboard.
Ukuran File 9.95 KB
Jumlah Instalasi 103
Versi Saat Ini 1.0
Terakhir Diperbarui 2013-12-11
Tanggal Publikasi 2013-12-11
Penilaian 3.67/5 Total 3 Penilaian
Pengembang tubaguy50035
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}