ServiceNow Doc Link Grabber
Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
Cos'è ServiceNow Doc Link Grabber?
ServiceNow Doc Link Grabber è un'estensione di Chrome sviluppata da Adam Stout, e la sua funzione principale è "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ServiceNow Doc Link Grabber
Scarica i file di estensione ServiceNow Doc Link Grabber in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Create version insensitive links for ServiceNow documentation from docs.servicenow.com and developer.servicenow.com. Not affiliated with ServiceNow or supported by ServiceNow.
Informazioni di Base sull'Estensione
Nome | ServiceNow Doc Link Grabber |
ID | bmaakpehehjgdjekccmalllmfgiomajk |
URL Ufficiale | https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk |
Descrizione | Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow) |
Dimensione del File | 341 KB |
Conteggio Installazioni | 90 |
Versione Corrente | 0.9.2 |
Ultimo Aggiornamento | 2021-05-03 |
Data di Pubblicazione | 2021-03-23 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Adam Stout |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |