Copy URL And Title

Copy page URL and ticket title

Apa itu Copy URL And Title?

Copy URL And Title adalah ekstensi Chrome yang dikembangkan oleh NeuLion Web, dan fitur utamanya adalah "Copy page URL and ticket title".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Copy URL And Title

Unduh file ekstensi Copy URL And Title 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 both page URL and page title.
Click: Copy Link + Title
Double Click: Copy Link + Title + JIRA Assignee
Ctrl + Click: Short Link + Title
If you copy to Rich Text Editor like MS Word, Google Docs, YouDao Note, it will keep the href of the URL                    

Informasi Dasar Ekstensi

Nama Copy URL And Title Copy URL And Title
ID hccpddblgkmpaboaibeijeijhpmddefg
URL Resmi https://chrome.google.com/webstore/detail/copy-url-and-title/hccpddblgkmpaboaibeijeijhpmddefg
Deskripsi Copy page URL and ticket title
Ukuran File 35.5 KB
Jumlah Instalasi 101
Versi Saat Ini 1.12-20200207
Terakhir Diperbarui 2020-03-03
Tanggal Publikasi 2020-03-03
Penilaian 3.67/5 Total 3 Penilaian
Pengembang NeuLion Web
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy URL And Title",
    "description": "Copy page URL and ticket title",
    "version": "1.12",
    "version_name": "1.12-20200207",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "background",
        "notifications",
        "clipboardWrite",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "38": "icon_38.png",
        "86": "icon_86.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "copy.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "name": "Click to copy url and title",
        "default_icon": "icon_38.png"
    },
    "manifest_version": 2
}