DeCutr

Card a selected text of evidence automatically.

DeCutr là gì?

DeCutr là một tiện ích mở rộng Chrome được phát triển bởi justinmarwad, và tính năng chính của nó là "Card a selected text of evidence automatically.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DeCutr

Tải xuống các tệp mở rộng DeCutr dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DeCutr DeCutr
ID hobkoafajocifjponaoifdnmgdcaehin
URL Chính Thức https://chromewebstore.google.com/detail/decutr/hobkoafajocifjponaoifdnmgdcaehin
Mô tả Card a selected text of evidence automatically.
Kích Thước Tệp 124 KB
Số Lần Cài Đặt 522
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2021-04-07
Ngày Phát Hành 2020-08-30
Đánh Giá 5.00/5 Tổng số 22 Đánh Giá
Nhà Phát Triển justinmarwad
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.decutr.com
URL Trang Trợ Giúp https://www.decutr.com
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}