Copy Text Fragment URL

Copy a link to any highlighted text just by right-clicking.

Что такое Copy Text Fragment URL?

Copy Text Fragment URL - это расширение Chrome, разработанное Andrew Rabon, и его основная функция - "Copy a link to any highlighted text just by right-clicking.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Copy Text Fragment URL

Скачайте файлы расширений Copy Text Fragment URL в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        As of version 80, Chromium has a fancy new feature called "scroll to text fragment," letting you jump to anywhere in the page given specified text. This extension wraps that functionality, letting you highlight and right-click to easily copy a URL to where that text is on the page.

Inspired by and built for the Web's loyal vanguard and general lovable weirdo, Bruce Lawson.                    

Основная информация о расширении

Название Copy Text Fragment URL Copy Text Fragment URL
ID bemdbglmlhlkmkgfnleiofphhekephnm
Официальный URL https://chromewebstore.google.com/detail/copy-text-fragment-url/bemdbglmlhlkmkgfnleiofphhekephnm
Описание Copy a link to any highlighted text just by right-clicking.
Размер файла 148 KB
Количество установок 371
Текущая Версия 1.0.1
Последнее Обновление 2020-03-12
Дата публикации 2020-03-11
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Andrew Rabon
Тип оплаты free
Официальный сайт расширения https://github.com/andrewrabon/copy-text-fragment-url
URL страницы помощи https://github.com/andrewrabon/copy-text-fragment-url/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Text Fragment URL",
    "version": "1.0.1",
    "description": "Copy a link to any highlighted text just by right-clicking.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png",
        "512": "icons\/512.png"
    },
    "background": {
        "scripts": [
            "dist\/backgroundScript.js"
        ],
        "persistent": false
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "contextMenus"
    ]
}