Content Finder

The easiest way to identify the endpoint where the content is coming from.

Content Finderคืออะไร?

Content Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย White Tower Software LLC และคุณลักษณะหลักของมันคือ "The easiest way to identify the endpoint where the content is coming from."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Content Finder

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

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

                                            

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

ชื่อ Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
คำอธิบาย The easiest way to identify the endpoint where the content is coming from.
ขนาดไฟล์ 884 KB
จำนวนการติดตั้ง 100
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2018-03-07
วันที่เผยแพร่ 2018-03-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา White Tower Software LLC
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Finder",
    "description": "The easiest way to identify the endpoint where the content is coming from.",
    "version": "1.1",
    "author": "White Tower Software LLC",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Content Finder"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "main.css",
                "fonts\/css\/fontawesome-all.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "inject.js",
        "fonts\/webfonts\/*"
    ]
}