ServiceNow Doc Link Grabber
Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
O que é ServiceNow Doc Link Grabber?
ServiceNow Doc Link Grabber é uma extensão do Chrome desenvolvida por Adam Stout, e sua principal característica é "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ServiceNow Doc Link Grabber
Baixe arquivos de extensão ServiceNow Doc Link Grabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Create version insensitive links for ServiceNow documentation from docs.servicenow.com and developer.servicenow.com. Not affiliated with ServiceNow or supported by ServiceNow.
Informações Básicas da Extensão
Nome | ServiceNow Doc Link Grabber |
ID | bmaakpehehjgdjekccmalllmfgiomajk |
URL Oficial | https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk |
Descrição | Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow) |
Tamanho do Arquivo | 341 KB |
Contagem de Instalações | 90 |
Versão Atual | 0.9.2 |
Última Atualização | 2021-05-03 |
Data de Publicação | 2021-03-23 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Adam Stout |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |