ServiceNow Doc Link Grabber
Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
Apa itu ServiceNow Doc Link Grabber?
ServiceNow Doc Link Grabber adalah ekstensi Chrome yang dikembangkan oleh Adam Stout, dan fitur utamanya adalah "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ServiceNow Doc Link Grabber
Unduh file ekstensi ServiceNow Doc Link Grabber dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Create version insensitive links for ServiceNow documentation from docs.servicenow.com and developer.servicenow.com. Not affiliated with ServiceNow or supported by ServiceNow.
Informasi Dasar Ekstensi
Nama | ServiceNow Doc Link Grabber |
ID | bmaakpehehjgdjekccmalllmfgiomajk |
URL Resmi | https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk |
Deskripsi | Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow) |
Ukuran File | 341 KB |
Jumlah Instalasi | 90 |
Versi Saat Ini | 0.9.2 |
Terakhir Diperbarui | 2021-05-03 |
Tanggal Publikasi | 2021-03-23 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Adam Stout |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |