Copy URL And Title

Copy page URL and ticket title

What is Copy URL And Title?

Copy URL And Title is a Chrome extension developed by NeuLion Web, and its main feature is "Copy page URL and ticket title".

Extension Screenshots

screenshot

Download Copy URL And Title Extension CRX File

Download Copy URL And Title extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Copy URL And Title Copy URL And Title
ID hccpddblgkmpaboaibeijeijhpmddefg
Official URL https://chrome.google.com/webstore/detail/copy-url-and-title/hccpddblgkmpaboaibeijeijhpmddefg
Description Copy page URL and ticket title
File Size 35.5 KB
Installation Count 101
Current Version 1.12-20200207
Last Updated 2020-03-03
Publish Date 2020-03-03
Rating 3.67/5 Total 3 Ratings
Developer NeuLion Web
Email [email protected]
Payment Type free
Supported Languages 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
}