ServiceNow Doc Link Grabber

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

Wat is ServiceNow Doc Link Grabber?

ServiceNow Doc Link Grabber is een Chrome-extensie ontwikkeld door Adam Stout, en de belangrijkste functie is "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie ServiceNow Doc Link Grabber

Download ServiceNow Doc Link Grabber-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Not affiliated with ServiceNow or supported by ServiceNow.                    

Basisinformatie over de Extensie

Naam ServiceNow Doc Link Grabber ServiceNow Doc Link Grabber
ID bmaakpehehjgdjekccmalllmfgiomajk
Officiële URL https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk
Beschrijving Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
Bestandsgrootte 341 KB
Aantal Installaties 90
Huidige Versie 0.9.2
Laatst Bijgewerkt 2021-05-03
Publicatiedatum 2021-03-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Adam Stout
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}