Simple Allow Copy

Allow Copy on every websites

Simple Allow Copy란 무엇입니까?

Simple Allow Copy은(는) simpleallowcopy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow Copy on every websites"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        ###  DANGER   ###
This extension works by intercepting user interactions, and it CAN BREAK some web pages. In these cases, just quit "copy mode" 
###############

Enable copy and right-click on sites that blocked them

Usage:
- Click browser action icon to enter "copy mode" for current site

Features:
- Unlocks copy (for real)
- Remembers which site to unblock for future visits
- minimal overhead (~300 lines of code)

Source code: 
https://github.com/FallenMax/chrome-extension-allow-copy

Buy me a coffee:
https://www.buymeacoffee.com/fallenmax                    

확장 프로그램 기본 정보

이름 Simple Allow Copy Simple Allow Copy
ID aefehdhdciieocakfobpaaolhipkcpgc
공식 URL https://chromewebstore.google.com/detail/simple-allow-copy/aefehdhdciieocakfobpaaolhipkcpgc
설명 Allow Copy on every websites
파일 크기 19.5 KB
설치 횟수 740,895
현재 버전 0.8.3
최근 업데이트 2021-01-20
출시 날짜 2019-07-04
평점 4.20/5 총 533 개의 평점
개발자 simpleallowcopy
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FallenMax/chrome-extension-allow-copy
도움말 페이지 URL https://github.com/FallenMax/chrome-extension-allow-copy/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Allow Copy",
    "version": "0.8.3",
    "description": "Allow Copy on every websites",
    "icons": {
        "16": "icons\/active.png",
        "48": "icons\/active.png",
        "128": "icons\/active.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/inactive.png"
        },
        "default_title": "Allow Copy"
    },
    "background": {
        "scripts": [
            "background\/proxy.js",
            "background\/config.js",
            "background\/index.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/proxy.js",
                "content_scripts\/unlocker.js",
                "content_scripts\/index.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "author": "[email protected]"
}