ServiceNow Doc Link Grabber
Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
Was ist ServiceNow Doc Link Grabber?
ServiceNow Doc Link Grabber ist eine Chrome-Erweiterung, die von Adam Stout entwickelt wurde, und ihr Hauptmerkmal ist "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".
Erweiterungsscreenshots
ServiceNow Doc Link Grabber-Erweiterungs-CRX-Datei herunterladen
Laden Sie ServiceNow Doc Link Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Create version insensitive links for ServiceNow documentation from docs.servicenow.com and developer.servicenow.com. Not affiliated with ServiceNow or supported by ServiceNow.
Grundlegende Informationen zur Erweiterung
Name | ServiceNow Doc Link Grabber |
ID | bmaakpehehjgdjekccmalllmfgiomajk |
Offizielle URL | https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk |
Beschreibung | Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow) |
Dateigröße | 341 KB |
Installationsanzahl | 90 |
Aktuelle Version | 0.9.2 |
Letztes Update | 2021-05-03 |
Veröffentlichungsdatum | 2021-03-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Adam Stout |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |