DeCutr

Card a selected text of evidence automatically.

DeCutr란 무엇입니까?

DeCutr은(는) justinmarwad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Card a selected text of evidence automatically."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        DeCutr is a simple chrome extention that takes the effort out of researcing. Just select your paragraph of text on an article, right click, and then hwit the "Card Evidence" button to have a full citation and the evidence copied to your clipboard!                    

확장 프로그램 기본 정보

이름 DeCutr DeCutr
ID hobkoafajocifjponaoifdnmgdcaehin
공식 URL https://chromewebstore.google.com/detail/decutr/hobkoafajocifjponaoifdnmgdcaehin
설명 Card a selected text of evidence automatically.
파일 크기 124 KB
설치 횟수 522
현재 버전 0.0.3
최근 업데이트 2021-04-07
출시 날짜 2020-08-30
평점 5.00/5 총 22 개의 평점
개발자 justinmarwad
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.decutr.com
도움말 페이지 URL https://www.decutr.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 2,
    "name": "DeCutr",
    "description": "Card a selected text of evidence automatically.",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon-32.png",
        "default_title": "Card Evidence"
    },
    "background": {
        "scripts": [
            "js\/libraries\/jquery-3.5.1.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/libraries\/mousetrap.min.js",
                "js\/content_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "data\/font-families.json"
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "storage",
        "https:\/\/www.decutr.com\/*"
    ]
}