Copy URLs

Copy all URLs to clipboard

Apa itu Copy URLs?

Copy URLs adalah ekstensi Chrome yang dikembangkan oleh https://melanto.com, dan fitur utamanya adalah "Copy all URLs to clipboard".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Copy URLs

Unduh file ekstensi Copy URLs 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

                        Copy all open pages (title and/or address) to clipboard. Select what to export (all tabs or just the web-pages; all windows or current window only) and how to export it (choose between several formats -- simple url list, HTML, CSV etc.) 

You can define your own (custom) format to generate specific url list (for example -- JavaScript array or XLS table ready to be copy/pasted in Excel)                    

Informasi Dasar Ekstensi

Nama Copy URLs Copy URLs
ID efkmnflmpgiklkehhoeiibnmdfffmmjk
URL Resmi https://chromewebstore.google.com/detail/copy-urls/efkmnflmpgiklkehhoeiibnmdfffmmjk
Deskripsi Copy all URLs to clipboard
Ukuran File 47.07 KB
Jumlah Instalasi 36,688
Versi Saat Ini 1.0.0.3
Terakhir Diperbarui 2020-03-25
Tanggal Publikasi 2020-03-25
Penilaian 4.79/5 Total 29 Penilaian
Pengembang https://melanto.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://melanto.com/apps/copy-urls/
URL Halaman Bantuan http://melanto.com/apps/copy-urls/help.html
URL Halaman Kebijakan Privasi https://melanto.com/privacy.html
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy URLs",
    "short_name": "Copy URLs",
    "version": "1.0.0.3",
    "manifest_version": 2,
    "homepage_url": "http:\/\/melanto.com\/apps\/copy-urls\/",
    "description": "Copy all URLs to clipboard",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Copy URLs",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "incognito": "spanning",
    "offline_enabled": true
}