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
官方網址 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
}