Copy Cat

Quickly copy the title of page and url into your clipboard!

Copy Cat란 무엇입니까?

Copy Cat은(는) kiichi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly copy the title of page and url into your clipboard!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Copy Cat 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Quickly Copy Title and URL from Chrome Toolbar. After Install the extension, click the copy cat icon in Chrome's Toolbar. You can quickly copy Title and URL to the clipboard in different format. It's easy to paste the text in chat window, email, and so on.

[Supported Format]
- "Title - URL"
- "[Title] URL"
- Copy in Two Lines
- Rich Text Link
- HTML Link
- Markdown Link
- BBCode
- Url Only
- Title Only

[Copy Mode]
Either copy the current tab or select "All Tabs" for batch copy.

[Shortcut / Hotkey]
Copy Rich Text:
- Windows: Alt+Shift+C
- Mac: Ctrl+Shift+C

Copy Markdown:
- Windows: Alt+Shift+D
- Mac: Ctrl+Shift+D

Copy Title - URL:
- Windows: Alt+Shift+X
- Mac: Ctrl+Shift+X

Copy Previous Format:
- Windows: Alt+Shift+Z
- Mac: Ctrl+Shift+Z

[Settings]
- Font Size
- Column Layout
- Sort Order
- Context Menu On / Off
- Shortcut Configuration coming soon!

[Clean Format]
The extension will clean up typical notification count prefix like "(4)" in the title (Thanks to David Jeske!)

Icon credit : M.Y                    

확장 프로그램 기본 정보

이름 Copy Cat Copy Cat
ID andlmjmbnlaamloflnelcafcnkiplhkc
공식 URL https://chromewebstore.google.com/detail/copy-cat/andlmjmbnlaamloflnelcafcnkiplhkc
설명 Quickly copy the title of page and url into your clipboard!
파일 크기 58.19 KB
설치 횟수 2,096
현재 버전 1.8.0
최근 업데이트 2020-06-02
출시 날짜 2020-06-01
평점 5.00/5 총 17 개의 평점
개발자 kiichi
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kiichi/QuickCopyTitleAndURL/
도움말 페이지 URL https://github.com/kiichi/QuickCopyTitleAndURL/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Cat",
    "description": "Quickly copy the title of page and url into your clipboard!",
    "version": "1.8.0",
    "permissions": [
        "tabs",
        "clipboardWrite",
        "notifications",
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_title": "Copy Title and URL",
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "shortcut-c": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Copy Rich Text"
        },
        "shortcut-x": {
            "suggested_key": {
                "default": "Alt+Shift+X",
                "mac": "MacCtrl+Shift+X"
            },
            "description": "Copy Title - URL"
        },
        "shortcut-d": {
            "suggested_key": {
                "default": "Alt+Shift+D",
                "mac": "MacCtrl+Shift+D"
            },
            "description": "Copy Markdown"
        },
        "shortcut-z": {
            "suggested_key": {
                "default": "Alt+Shift+Z",
                "mac": "MacCtrl+Shift+Z"
            },
            "description": "Repeat previous copy"
        }
    }
}