Code Copier

Code Copier - Extension to copy contents inside and

 tags with right click

Code Copier란 무엇입니까?

Code Copier은(는) Ice Lam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Code Copier - Extension to copy contents inside and

 tags with right click"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

 Google Chrome and Mozilla Firefox extension to copy contents inside  and 
 tags with right click. Fetures: * Right click on  and 
 tags to copy
* Up to 10 copy history
* Go back to the website where the code snippets from
* Disable plugin on user defined host names

Other Information:
* Firefox Version: https://addons.mozilla.org/en-US/firefox/addon/code-copier/
* Source code available at https://github.com/icelam/code-copier.                    

확장 프로그램 기본 정보

이름 Code Copier Code Copier
ID polidkhcaghmmijeemenkiloblpdfphp
공식 URL https://chromewebstore.google.com/detail/code-copier/polidkhcaghmmijeemenkiloblpdfphp
설명 Code Copier - Extension to copy contents inside and
 tags with right click
파일 크기 233 KB
설치 횟수 2,000
현재 버전 1.0
최근 업데이트 2019-11-04
출시 날짜 2019-11-04
평점 4.33/5 총 6 개의 평점
개발자 Ice Lam
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/icelam/code-copier
지원되는 언어 en-US
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Code Copier", "author": "Ice Lam", "homepage_url": "https:\/\/github.com\/icelam\/code-copier", "version": "1.0", "description": "Code Copier - Extension to copy contents inside  and 
 tags with right click",
    "icons": {
        "16": "assets\/images\/icons\/icon16.png",
        "32": "assets\/images\/icons\/icon32.png",
        "36": "assets\/images\/icons\/icon36.png",
        "48": "assets\/images\/icons\/icon48.png",
        "128": "assets\/images\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/images\/icons\/icon16.png",
            "24": "assets\/images\/icons\/icon24.png",
            "32": "assets\/images\/icons\/icon32.png"
        },
        "default_title": "Code Copier",
        "default_popup": "index.html"
    },
    "permissions": [
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/content-script.js"
            ],
            "css": [
                "assets\/css\/web.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' blob:; style-src * 'unsafe-inline'; font-src *"
}