LinkToId

This extension helps to identify and use linkable IDs within a page.

什么是LinkToId?

LinkToId是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension helps to identify and use linkable IDs within a page.”。

扩展截图

screenshot

下载LinkToId扩展crx文件

下载LinkToId扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        When the fragment identifier (hash part) of an URL matches an element ID, the browser will scroll to that element. This is great if you want to link directly to a particular part or section of a page. LinkToId makes it super easy to identify an element ID and to obtain the URL of said element.

Press Ctrl and Alt to show the LinkToId tooltip, which will identify the closest linkable element. Click the left mouse button while the tooltip is showing to modify the fragment identifier of the current URL. You can now copy the full URL and use it anywhere as a direct link.

LinkToId is currently somewhat limited. If you want to contribute to development or suggest improvement ideas, please visit https://github.com/provegard/LinkToId.                    

扩展基本信息

名称 LinkToId LinkToId
ID cggiopngamlojpeoliehhppmdphinjen
官方URL https://chromewebstore.google.com/detail/linktoid/cggiopngamlojpeoliehhppmdphinjen
简介 This extension helps to identify and use linkable IDs within a page.
文件大小 14.07 KB
安装次数 97
当前版本 0.0.1
更新时间 2015-01-04
上架时间 2015-01-04
评分 5.00/5 共4次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/provegard/LinkToId
帮助页面URL https://github.com/provegard/linktoid/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LinkToId",
    "version": "0.0.1",
    "manifest_version": 2,
    "short_name": "LinkToId",
    "description": "This extension helps to identify and use linkable IDs within a page.",
    "author": "Per Rovegard",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "linktoid.js"
            ],
            "css": [
                "linktoid.css"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    }
}