Auto Copy Pro

Automatically copy selected text from any website to your clipboard!

Auto Copy Pro란 무엇입니까?

Auto Copy Pro은(는) Hafizur Rahman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically copy selected text from any website to your clipboard!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        It save your time by automatically copy selected text to the clipboard.

When text is selected using the mouse/keyboard it will automatically be copied to the clipboard.

# Once this extension is installed you must reload any open tabs in order for it to work #

Features:
 - Notification on copy
 - Work with keyboard
 - Always copy as a link
 - Copy without formatting
 - Works with all URL types
 - Use modifier key(s) to copy as a link

Who should use ---
- Programmer
- Copywriter
- Blogger
- Every Chrome user 😊

More features coming soon !                    

확장 프로그램 기본 정보

이름 Auto Copy Pro Auto Copy Pro
ID dggjedhladcgnhkehemidebdddebfkad
공식 URL https://chromewebstore.google.com/detail/auto-copy-pro/dggjedhladcgnhkehemidebdddebfkad
설명 Automatically copy selected text from any website to your clipboard!
파일 크기 14.09 KB
설치 횟수 806
현재 버전 1.0
최근 업데이트 2021-10-04
출시 날짜 2021-10-01
평점 4.17/5 총 6 개의 평점
개발자 Hafizur Rahman
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Copy Pro",
    "description": "Automatically copy selected text from any website to your clipboard!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "script.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/notepad16.png",
            "32": "\/images\/notepad32.png",
            "48": "\/images\/notepad48.png",
            "128": "\/images\/notepad128.png"
        }
    },
    "icons": {
        "16": "\/images\/notepad16.png",
        "32": "\/images\/notepad32.png",
        "48": "\/images\/notepad48.png",
        "128": "\/images\/notepad128.png"
    },
    "options_page": "options.html"
}