Copy Link/Tab Name and URL

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

Co je Copy Link/Tab Name and URL?

Copy Link/Tab Name and URL je rozšíření Chrome vyvinuté https://sites.google.com/site/copylinknameandurl, a jeho hlavní funkcí je „Copy the name and URL of a link or a Tab.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Copy Link/Tab Name and URL

Stáhněte si soubory rozšíření Copy Link/Tab Name and URL 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í

                        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.                    

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

Název Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
Oficiální URL https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
Popis Copy the name and URL of a link or a Tab.
Velikost souboru 11.64 KB
Počet instalací 236
Aktuální Verze 3.1
Poslední Aktualizace 2021-04-01
Datum Vydání 2020-02-26
Vývojář https://sites.google.com/site/copylinknameandurl
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/wadefelix/copylinktabnameandurl
Podporované Jazyky 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"
    }
}