Sharemaster: Copy Title & URL with Shortcut

Helps you copy the title and url quickly with keyboard shortcuts

Sharemaster: Copy Title & URL with Shortcutとは何ですか?

Sharemaster: Copy Title & URL with Shortcutはwalterteng.comによって開発されたChromeの拡張機能で、その主な機能は「Helps you copy the title and url quickly with keyboard shortcuts」です。

拡張機能のスクリーンショット

screenshot
screenshot

Sharemaster: Copy Title & URL with Shortcut拡張機能のCRXファイルをダウンロード

Sharemaster: Copy Title & URL with Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Sharemaster: Copy Title & URL with Shortcut Sharemaster: Copy Title & URL with Shortcut
ID cglaemmecoiemahimhggkppegekpfdca
公式URL https://chromewebstore.google.com/detail/sharemaster-copy-title-ur/cglaemmecoiemahimhggkppegekpfdca
説明 Helps you copy the title and url quickly with keyboard shortcuts
ファイルサイズ 9.82 KB
インストール数 158
現在のバージョン 1.0.1
最終更新日 2023-05-04
公開日 2021-06-10
評価 4.67/5 合計 3 レビュー
開発者 walterteng.com
Eメール [email protected]
支払い方法 free
対応言語 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)"
        }
    }
}