Copycat

Copy content from web powerful than ever before.

Copycat란 무엇입니까?

Copycat은(는) https://blackglory.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy content from web powerful than ever before."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension creates a right-click menu that provides enhanced copying capabilities.

You can configure the preferences in the options page.
A part of the commands can be bound as browser shortcuts.

Features:
- Copy a tab title
- Copy a tab link as
  - Plain text
  - Rich text
  - HTML
  - Markdown
  - Org-Mode
  - AsciiDoc
  - BBCode
- Copy a frame title
- Copy a frame link as
  - Plain text
  - Rich text
  - HTML
  - Markdown
  - Org-Mode
  - AsciiDoc
  - BBCode
- Copy a link text
- Copy a link as
  - Plain text
  - Rich text
  - HTML
  - Markdown
  - Org-Mode
  - AsciiDoc
  - BBCode
- Copy selection as
  - Plain text
  - Concatenated plain text
  - JSON
  - Markdown
  - HTML
  - HTML without attributes
  - User-defined clean HTML
  - BBCode
- Copy an image as
  - HTML
  - Markdown
  - BBCode
  - Data URL
- Copy a native audio as HTML
- Copy a native video as HTML

Github: https://github.com/BlackGlory/copycat                    

확장 프로그램 기본 정보

이름 Copycat Copycat
ID jdjbiojkklnaeoanimopafmnmhldejbg
공식 URL https://chromewebstore.google.com/detail/copycat/jdjbiojkklnaeoanimopafmnmhldejbg
설명 Copy content from web powerful than ever before.
파일 크기 1.24 MB
설치 횟수 9,178
현재 버전 3.1.4
최근 업데이트 2023-12-22
출시 날짜 2018-08-24
평점 4.67/5 총 51 개의 평점
개발자 https://blackglory.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/BlackGlory/copycat
도움말 페이지 URL https://github.com/BlackGlory/copycat/issues
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "author": "BlackGlory",
    "version": "3.1.4",
    "manifest_version": 3,
    "minimum_chrome_version": "109",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "assets\/images\/icon-16.png",
        "32": "assets\/images\/icon-32.png",
        "48": "assets\/images\/icon-48.png",
        "64": "assets\/images\/icon-64.png",
        "128": "assets\/images\/icon-128.png"
    },
    "commands": {
        "commandTabTitle": {
            "description": "__MSG_commandTabTitle__"
        },
        "commandTabLinkAsPlainText": {
            "description": "__MSG_commandTabLinkAsPlainText__"
        },
        "commandTabLinkAsRichText": {
            "description": "__MSG_commandTabLinkAsRichText__"
        },
        "commandTabLinkAsHTML": {
            "description": "__MSG_commandTabLinkAsHTML__"
        },
        "commandTabLinkAsMarkdown": {
            "description": "__MSG_commandTabLinkAsMarkdown__"
        },
        "commandTabLinkAsOrgMode": {
            "description": "__MSG_commandTabLinkAsOrgMode__"
        },
        "commandTabLinkAsAsciiDoc": {
            "description": "__MSG_commandTabLinkAsAsciiDoc__"
        },
        "commandTabLinkAsBBCode": {
            "description": "__MSG_commandTabLinkAsBBCode__"
        },
        "commandSelectionAsPlainText": {
            "description": "__MSG_commandSelectionAsPlainText__"
        },
        "commandSelectionAsConcatenatedPlainText": {
            "description": "__MSG_commandSelectionAsConcatenatedPlainText__"
        },
        "commandSelectionAsJSON": {
            "description": "__MSG_commandSelectionAsJSON__"
        },
        "commandSelectionAsMarkdown": {
            "description": "__MSG_commandSelectionAsMarkdown__"
        },
        "commandSelectionAsHTML": {
            "description": "__MSG_commandSelectionAsHTML__"
        },
        "commandSelectionAsHTMLWithoutAttributes": {
            "description": "__MSG_commandSelectionAsHTMLWithoutAttributes__"
        },
        "commandSelectionAsCleanHTML": {
            "description": "__MSG_commandSelectionAsCleanHTML__"
        },
        "commandSelectionAsBBCode": {
            "description": "__MSG_commandSelectionAsBBCode__"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "copycat.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "__MSG_extensionActionTitle__",
        "default_popup": "options.html",
        "default_icon": {
            "16": "assets\/images\/icon-16.png",
            "32": "assets\/images\/icon-32.png",
            "48": "assets\/images\/icon-48.png",
            "64": "assets\/images\/icon-64.png",
            "128": "assets\/images\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "scripting",
        "clipboardWrite",
        "offscreen",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ]
}