fragment

A tool for getting URLs of page fragments

O que é fragment?

fragment é uma extensão do Chrome desenvolvida por jmajnert, e sua principal característica é "A tool for getting URLs of page fragments".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão fragment

Baixe arquivos de extensão fragment no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome fragment fragment
ID onabdcmognnippccjhcomlaniijgmkie
URL Oficial https://chromewebstore.google.com/detail/fragment/onabdcmognnippccjhcomlaniijgmkie
Descrição A tool for getting URLs of page fragments
Tamanho do Arquivo 7.11 KB
Contagem de Instalações 86
Versão Atual 0.5
Última Atualização 2015-07-17
Data de Publicação 2015-07-17
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor jmajnert
Tipo de Pagamento free
Idiomas Suportados 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
}