Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

Was ist Copy Link/Tab Name and URL?

Copy Link/Tab Name and URL ist eine Chrome-Erweiterung, die von https://sites.google.com/site/copylinknameandurl entwickelt wurde, und ihr Hauptmerkmal ist "Copy the name and URL of a link or a Tab.".

Erweiterungsscreenshots

screenshot
screenshot

Copy Link/Tab Name and URL-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Link/Tab Name and URL-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

                        It adds a command to the context munu on the link and copies the link's name(source anchor) and URL with the plain text format. It also copies the tab's titile and url.
So this extension makes it very easy to share the links with IM, Email, blog and so on.

It has a Preference Page to configure the Format.                    

Grundlegende Informationen zur Erweiterung

Name Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
Offizielle URL https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
Beschreibung Copy the name and URL of a link or a Tab.
Dateigröße 11.64 KB
Installationsanzahl 236
Aktuelle Version 3.1
Letztes Update 2021-04-01
Veröffentlichungsdatum 2020-02-26
Entwickler https://sites.google.com/site/copylinknameandurl
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/wadefelix/copylinktabnameandurl
Unterstützte Sprachen en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.1",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/wadefelix\/copylinktabnameandurl",
    "author": "Ren Wei",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/page-16.png",
        "32": "icons\/page-32.png",
        "48": "icons\/page-48.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}