Sharemaster: Copy Title & URL with Shortcut

Helps you copy the title and url quickly with keyboard shortcuts

Hvad er Sharemaster: Copy Title & URL with Shortcut?

Sharemaster: Copy Title & URL with Shortcut er en Chrome-udvidelse udviklet af walterteng.com, og dens hovedfunktion er "Helps you copy the title and url quickly with keyboard shortcuts".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Sharemaster: Copy Title & URL with Shortcut-udvidelses-CRX-fil

Download Sharemaster: Copy Title & URL with Shortcut-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Helps you copy the title and url quickly with easy shortcut keys!

These are preconfigured shortcuts:
ALT + C 
Copy Page Title and URL

ALT + H
Copy Page Title and URL in HTML syntax

ALT + M
Copy Page Title and URL in Markdown syntax

These shortcuts are configurable via the chrome extensions shortcut menu too.

Alternatively, Sharemaster can also be accessed from the menu by right-clicking on the webpage.

This is ultra useful when you are working on your reports or simply sharing viral content with your friends!                    

Grundlæggende oplysninger om udvidelsen

Navn Sharemaster: Copy Title & URL with Shortcut Sharemaster: Copy Title & URL with Shortcut
ID cglaemmecoiemahimhggkppegekpfdca
Officiel URL https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca
Beskrivelse Helps you copy the title and url quickly with keyboard shortcuts
Filstørrelse 9.82 KB
Antal Installationer 158
Nuværende Version 1.0.1
Senest Opdateret 2023-05-04
Udgivelsesdato 2021-06-10
Bedømmelse 4.67/5 Samlet 3 Bedømmelser
Udvikler walterteng.com
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sharemaster: Copy Title & URL with Shortcut",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Helps you copy the title and url quickly with keyboard shortcuts",
    "author": "Walter Teng",
    "homepage_url": "https:\/\/github.com\/davzoku",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "tabs"
    ],
    "commands": {
        "copyTitleURLDefault": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Copy Title and URL (default)"
        },
        "copyTitleURLMarkdown": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Copy Title and URL (Markdown)"
        },
        "copyTitleURLHTML": {
            "suggested_key": {
                "default": "Alt+H"
            },
            "description": "Copy Title and URL (HTML)"
        }
    }
}