fragment

A tool for getting URLs of page fragments

fragmentとは何ですか?

fragmentはjmajnertによって開発されたChromeの拡張機能で、その主な機能は「A tool for getting URLs of page fragments」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

fragment拡張機能のCRXファイルをダウンロード

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
}