Force Copy

Force Copy Everything

Force Copy란 무엇입니까?

Force Copy은(는) Breeze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Force Copy Everything"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Force Copy allows you to lift copy restrictions, keyboard restrictions, and right-click menu restrictions on Web pages.

All functions of the extension are turned off by default. When you need it, click the extension program and select the corresponding module to start it.

⭐ Start means that the domain name remains open. Even if the page is closed, it will still remain started the next time it is opened.
⭐ Once means that it will only take effect in the current Tab page. After closing the Tab page, it will remain closed the next time it is opened. Note that refreshing the page will not turn off the function. This is useful in many situations, especially in rich text editor websites.

Open source address: https://github.com/WindrunnerMax/TKScript.                    

확장 프로그램 기본 정보

이름 Force Copy Force Copy
ID cceclgeciefpanebkfkogecbjjchmico
공식 URL https://chromewebstore.google.com/detail/force-copy/cceclgeciefpanebkfkogecbjjchmico
설명 Force Copy Everything
파일 크기 170 KB
설치 횟수 505
현재 버전 1.0.6
최근 업데이트 2024-01-22
출시 날짜 2023-10-08
평점 5.00/5 총 3 개의 평점
개발자 Breeze
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/WindrunnerMax/TKScript/tree/master/packages/force-copy/README.md
도움말 페이지 URL https://github.com/WindrunnerMax/TKScript/issues
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Force Copy",
    "version": "1.0.6",
    "description": "Force Copy Everything",
    "default_locale": "en",
    "icons": {
        "32": ".\/static\/favicon.128.png",
        "96": ".\/static\/favicon.128.png",
        "128": ".\/static\/favicon.128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": ".\/static\/favicon.128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/*",
                "eQnCrNJRXq.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "minimum_chrome_version": "88.0"
}