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文件

下載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
官方網址 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\/*"
    ]
}