DeCutr

Card a selected text of evidence automatically.

DeCutrคืออะไร?

DeCutr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย justinmarwad และคุณลักษณะหลักของมันคือ "Card a selected text of evidence automatically."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DeCutr

ดาวน์โหลดไฟล์ส่วนขยาย DeCutr ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}