ServiceNow Doc Link Grabber

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

What is ServiceNow Doc Link Grabber?

ServiceNow Doc Link Grabber is a Chrome extension developed by Adam Stout, and its main feature is "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".

Extension Screenshots

screenshot
screenshot

Download ServiceNow Doc Link Grabber Extension CRX File

Download ServiceNow Doc Link Grabber extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Not affiliated with ServiceNow or supported by ServiceNow.                    

Extension Basic Information

Name ServiceNow Doc Link Grabber ServiceNow Doc Link Grabber
ID bmaakpehehjgdjekccmalllmfgiomajk
Official URL https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk
Description Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
File Size 341 KB
Installation Count 90
Current Version 0.9.2
Last Updated 2021-05-03
Publish Date 2021-03-23
Rating 5.00/5 Total 2 Ratings
Developer Adam Stout
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}