OpenLink Structured Data Sniffer

Reveals structured metadata (Microdata, RDFa, JSON-LD, Turtle, etc.) embedded within HTML documents.

OpenLink Structured Data Snifferคืออะไร?

OpenLink Structured Data Sniffer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย OpenLink Software และคุณลักษณะหลักของมันคือ "Reveals structured metadata (Microdata, RDFa, JSON-LD, Turtle, etc.) embedded within HTML documents."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OpenLink Structured Data Sniffer

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

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

                        What is it? 
The OpenLink Structured Data Sniffer (OSDS) is an extension for Web Extensions compliant browsers (e.g., Google Chrome, Microsoft Edge, Opera, and many others) that discovers Metadata embedded within HTML documents as Structured Data Islands and presents what's discovered using a Property Sheet presentation style.

Currently, OSDS supports discovery and processing of Structured Data Islands published using notations such as Microdata, RDFa, JSON-LD, RDF-Turtle, RDF-XML, CSV, and JSON.

Why is it important?
It simplifies the process of understanding what a given HTML document is about, via its metadata, for both end-users and developers. For instance, it helps Digital Brand Managers, Digital Content Managers, and Semantic Search Engine Optimization (SSEO) practitioners understand what may or may not be affecting Search Engine Results Pages (SERPs) placements.

How is it used? 

Simply install the extension to your browser and then visit a page of interest. On page arrival, the OSDS icon will be visually activated thereby indicating metadata discovery; once the icon is clicked, you will be presented with a presentation of transformed metadata.                    

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

ชื่อ OpenLink Structured Data Sniffer OpenLink Structured Data Sniffer
ID egdaiaihbdoiibopledjahjaihbmjhdj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/openlink-structured-data/egdaiaihbdoiibopledjahjaihbmjhdj
คำอธิบาย Reveals structured metadata (Microdata, RDFa, JSON-LD, Turtle, etc.) embedded within HTML documents.
ขนาดไฟล์ 2.51 MB
จำนวนการติดตั้ง 7,468
เวอร์ชันปัจจุบัน 3.0.16
อัปเดตครั้งล่าสุด 2023-07-10
วันที่เผยแพร่ 2020-05-30
คะแนน 4.76/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา OpenLink Software
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://osds.openlinksw.com
URL หน้าช่วยเหลือ https://shop.openlinksw.com/support_system/
URL หน้านโยบายความเป็นส่วนตัว https://www.openlinksw.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenLink Structured Data Sniffer",
    "short_name": "OSD Sniffer",
    "author": "OpenLink Software",
    "homepage_url": "http:\/\/osds.openlinksw.com\/",
    "version": "3.0.16",
    "manifest_version": 2,
    "minimum_chrome_version": "18",
    "description": "Reveals structured metadata (Microdata, RDFa, JSON-LD, Turtle, etc.) embedded within HTML documents.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon16.png",
        "default_title": "Show Document Metadata",
        "default_popup": "panel.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "lib\/jquery-3.1.0.min.js",
                "lib\/microdatajs\/jquery.microdata.js",
                "lib\/microdatajs\/jquery.microdata.json.js",
                "lib\/RDFa.js",
                "lib\/n3-browser.js",
                "lib\/jquery.mark.js",
                "lib\/namespace.js",
                "lib\/posh.js",
                "utils.js",
                "helpers_ui.js",
                "browser.js",
                "settings.js",
                "sniffer.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "browser.js",
                "oidc-webid-inject.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "frame.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "chat-inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*",
        "file:\/\/\/*\/*",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' chrome-extension:\/\/lib; object-src 'self' chrome-extension:\/\/lib; style-src 'self' 'unsafe-inline' chrome-extension:\/\/lib https:\/\/solid.openlinksw.com; media-src 'self' 'unsafe-inline' chrome-extension:\/\/lib ;"
}