fragment
A tool for getting URLs of page fragments
Wat is fragment?
fragment is een Chrome-extensie ontwikkeld door jmajnert, en de belangrijkste functie is "A tool for getting URLs of page fragments".
Extensie Screenshots
Download het CRX-bestand van de extensie fragment
Download fragment-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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                     Basisinformatie over de Extensie
| Naam |  | 
| ID | onabdcmognnippccjhcomlaniijgmkie | 
| Officiële URL | https://chromewebstore.google.com/detail/fragment/onabdcmognnippccjhcomlaniijgmkie | 
| Beschrijving | A tool for getting URLs of page fragments | 
| Bestandsgrootte | 7.11 KB | 
| Aantal Installaties | 86 | 
| Huidige Versie | 0.5 | 
| Laatst Bijgewerkt | 2015-07-17 | 
| Publicatiedatum | 2015-07-17 | 
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen | 
| Ontwikkelaar | jmajnert | 
| Betalingswijze | free | 
| Ondersteunde Talen | 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
} | |