fragment

A tool for getting URLs of page fragments

Что такое fragment?

fragment - это расширение Chrome, разработанное jmajnert, и его основная функция - "A tool for getting URLs of page fragments".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения fragment

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

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

                        This extension allows you to quickly copy a fragment URL to a piece of a web page, for example a section in an article in wikipedia.
To use it, turn it on, hover over the desired section (it should be highlighted in red) and click. The appropriate fragment URL is copied into the system's clipboard.
Code available here: https://github.com/jmajnert/fragment                    

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

Название fragment fragment
ID onabdcmognnippccjhcomlaniijgmkie
Официальный URL https://chromewebstore.google.com/detail/fragment/onabdcmognnippccjhcomlaniijgmkie
Описание A tool for getting URLs of page fragments
Размер файла 7.11 KB
Количество установок 86
Текущая Версия 0.5
Последнее Обновление 2015-07-17
Дата публикации 2015-07-17
Рейтинг 5.00/5 Всего 3 оценок
Разработчик jmajnert
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "fragment",
    "description": "A tool for getting URLs of page fragments",
    "version": "0.5",
    "author": "Janusz Majnert",
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Get fragment URL",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}