fragment

A tool for getting URLs of page fragments

Co to jest fragment?

fragment to rozszerzenie Chrome opracowane przez jmajnert, a jego główną funkcją jest „A tool for getting URLs of page fragments”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia fragment

Pobierz pliki rozszerzeń fragment w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa fragment fragment
ID onabdcmognnippccjhcomlaniijgmkie
Oficjalny URL https://chromewebstore.google.com/detail/fragment/onabdcmognnippccjhcomlaniijgmkie
Opis A tool for getting URLs of page fragments
Rozmiar pliku 7.11 KB
Liczba instalacji 86
Aktualna Wersja 0.5
Ostatnia Aktualizacja 2015-07-17
Data Publikacji 2015-07-17
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper jmajnert
Typ Płatności free
Obsługiwane Języki 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
}