Copycat

Copycat is a clipboard extension that allows you to copy and paste text and images from anywhere on the web.

Copycat란 무엇입니까?

Copycat은(는) Follett School Solutions, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copycat is a clipboard extension that allows you to copy and paste text and images from anywhere on the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Copycat is a free clip board extension that allows you to copy selected text and images from anywhere on the web and store those clips in our extension. Then you can copy stored clips to your clipboard and paste those clips from your clipboard to anywhere. No account or registration required.

Use the Copycat browser extension to:
* Copy and store text and images while keeping a reference to the page they came from.
* Organize clipped text and images by date.
* Search through all copied clips.
* Paste copied clips into an online editor, like Google Drive, Google Docs, Microsoft OneDrive or Office365.
* Toggle the extension on/off by clicking the extension icon.

Copycat is offered free by Follett School Solutions, Inc.                    

확장 프로그램 기본 정보

이름 Copycat Copycat
ID khbjeknhjcdbijopmdbnjpncellpbjhf
공식 URL https://chromewebstore.google.com/detail/copycat/khbjeknhjcdbijopmdbnjpncellpbjhf
설명 Copycat is a clipboard extension that allows you to copy and paste text and images from anywhere on the web.
파일 크기 359 KB
설치 횟수 4,000
현재 버전 0.1.62
최근 업데이트 2016-01-12
출시 날짜 2016-01-12
평점 3.18/5 총 11 개의 평점
개발자 Follett School Solutions, Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://follettlabs.com/projects/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.62",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Click to disable Copycat"
    },
    "commands": {
        "toggle-copycat": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Open and Close Copycat"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/injected\/main.js"
            ],
            "css": [
                "scripts\/injected\/main.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "scripts\/injected\/flyout\/app.html"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}