fragment

A tool for getting URLs of page fragments

What is fragment?

fragment is a Chrome extension developed by jmajnert, and its main feature is "A tool for getting URLs of page fragments".

Extension Screenshots

screenshot
screenshot
screenshot

Download fragment Extension CRX File

Download fragment extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name fragment fragment
ID onabdcmognnippccjhcomlaniijgmkie
Official URL https://chromewebstore.google.com/detail/fragment/onabdcmognnippccjhcomlaniijgmkie
Description A tool for getting URLs of page fragments
File Size 7.11 KB
Installation Count 86
Current Version 0.5
Last Updated 2015-07-17
Publish Date 2015-07-17
Rating 5.00/5 Total 3 Ratings
Developer jmajnert
Payment Type free
Supported Languages 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
}