DeCutr

Card a selected text of evidence automatically.

Co je DeCutr?

DeCutr je rozšíření Chrome vyvinuté justinmarwad, a jeho hlavní funkcí je „Card a selected text of evidence automatically.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření DeCutr

Stáhněte si soubory rozšíření DeCutr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název DeCutr DeCutr
ID hobkoafajocifjponaoifdnmgdcaehin
Oficiální URL https://chromewebstore.google.com/detail/decutr/hobkoafajocifjponaoifdnmgdcaehin
Popis Card a selected text of evidence automatically.
Velikost souboru 124 KB
Počet instalací 522
Aktuální Verze 0.0.3
Poslední Aktualizace 2021-04-07
Datum Vydání 2020-08-30
Hodnocení 5.00/5 Celkem 22 Hodnocení
Vývojář justinmarwad
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.decutr.com
URL Stránky Nápovědy https://www.decutr.com
Podporované Jazyky 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\/*"
    ]
}