Sharemaster: Copy Title & URL with Shortcut

Helps you copy the title and url quickly with keyboard shortcuts

Was ist Sharemaster: Copy Title & URL with Shortcut?

Sharemaster: Copy Title & URL with Shortcut ist eine Chrome-Erweiterung, die von walterteng.com entwickelt wurde, und ihr Hauptmerkmal ist "Helps you copy the title and url quickly with keyboard shortcuts".

Erweiterungsscreenshots

screenshot
screenshot

Sharemaster: Copy Title & URL with Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sharemaster: Copy Title & URL with Shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Sharemaster: Copy Title & URL with Shortcut Sharemaster: Copy Title & URL with Shortcut
ID cglaemmecoiemahimhggkppegekpfdca
Offizielle URL https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca
Beschreibung Helps you copy the title and url quickly with keyboard shortcuts
Dateigröße 9.82 KB
Installationsanzahl 158
Aktuelle Version 1.0.1
Letztes Update 2023-05-04
Veröffentlichungsdatum 2021-06-10
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler walterteng.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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)"
        }
    }
}