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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}