fragment
A tool for getting URLs of page fragments
什么是fragment?
fragment是由jmajnert开发的Chrome扩展程序,该扩展的主要功能是“A tool for getting URLs of page fragments”。
扩展截图
下载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 |
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 } |