ServiceNow Doc Link Grabber

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

Qu'est-ce que ServiceNow Doc Link Grabber ?

ServiceNow Doc Link Grabber est une extension Chrome développée par Adam Stout, et sa fonction principale est "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension ServiceNow Doc Link Grabber

Téléchargez les fichiers d'extension ServiceNow Doc Link Grabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Not affiliated with ServiceNow or supported by ServiceNow.                    

Informations de Base sur l'Extension

Nom ServiceNow Doc Link Grabber ServiceNow Doc Link Grabber
ID bmaakpehehjgdjekccmalllmfgiomajk
URL Officiel 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)
Taille du Fichier 341 KB
Nombre d'Installations 90
Version Actuelle 0.9.2
Dernière Mise à Jour 2021-05-03
Date de Publication 2021-03-23
Évaluation 5.00/5 Total 2 Évaluations
Développeur Adam Stout
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}