ServiceNow Doc Link Grabber

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

ServiceNow Doc Link Grabberคืออะไร?

ServiceNow Doc Link Grabber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam Stout และคุณลักษณะหลักของมันคือ "Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ServiceNow Doc Link Grabber

ดาวน์โหลดไฟล์ส่วนขยาย ServiceNow Doc Link Grabber ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

Not affiliated with ServiceNow or supported by ServiceNow.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ServiceNow Doc Link Grabber ServiceNow Doc Link Grabber
ID bmaakpehehjgdjekccmalllmfgiomajk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/servicenow-doc-link-grabb/bmaakpehehjgdjekccmalllmfgiomajk
คำอธิบาย Create version insensitive links from ServiceNow Documentation and Developer Portal (not affiliated with ServiceNow)
ขนาดไฟล์ 341 KB
จำนวนการติดตั้ง 90
เวอร์ชันปัจจุบัน 0.9.2
อัปเดตครั้งล่าสุด 2021-05-03
วันที่เผยแพร่ 2021-03-23
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Adam Stout
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}