ServiceNow Doc Link Grabber

Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)

什么是ServiceNow Doc Link Grabber?

ServiceNow Doc Link Grabber是由Adam Stout开发的Chrome扩展程序,该扩展的主要功能是“Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)”。

扩展截图

screenshot
screenshot

下载ServiceNow Doc Link Grabber扩展crx文件

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

扩展使用说明

                        Create version insensitive links for ServiceNow documentation from docs.servicenow.com and developer.servicenow.com.

Not affiliated with ServiceNow or supported by ServiceNow.                    

扩展基本信息

名称 ServiceNow Doc Link Grabber ServiceNow Doc Link Grabber
ID bmaakpehehjgdjekccmalllmfgiomajk
官方URL https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk
简介 Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
文件大小 341 KB
安装次数 90
当前版本 0.9.2
更新时间 2021-05-03
上架时间 2021-03-23
评分 5.00/5 共2次评分
开发者 Adam Stout
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ServiceNow Doc Link Grabber",
    "description": "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)",
    "author": "Adam Stout \/ adamstout.dev",
    "version": "0.9.2",
    "manifest_version": 2,
    "permissions": [
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": {
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png"
        },
        "default_title": "Copy URL",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/main.js"
        ]
    },
    "commands": {
        "copy-url": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            },
            "description": "Grab the URL to the latest version of the doc page you are viewing"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.servicenow.com\/*",
                "https:\/\/developer.servicenow.com\/*"
            ],
            "js": [
                "content\/main.js"
            ]
        }
    ]
}