Social Media Profile Saver

Allows you to save the important details from a profile page as an HTML document

Social Media Profile Saverคืออะไร?

Social Media Profile Saver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Allows you to save the important details from a profile page as an HTML document"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Social Media Profile Saver

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

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

                        Allows you to save the important details from a profile page as an HTML document                    

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

ชื่อ Social Media Profile Saver Social Media Profile Saver
ID okfbgbjbkfkndojokpjpfmhgadedmamb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/social-media-profile-save/okfbgbjbkfkndojokpjpfmhgadedmamb
คำอธิบาย Allows you to save the important details from a profile page as an HTML document
ขนาดไฟล์ 13.71 KB
จำนวนการติดตั้ง 93
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2017-02-17
วันที่เผยแพร่ 2017-02-17
คะแนน 1.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Media Profile Saver",
    "version": "1.1.1",
    "manifest_version": 2,
    "icons": {
        "128": "save-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "profile_content.js",
                "profile_content_old.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/recruiter\/profile\/*",
                "https:\/\/*.linkedin.com\/recruiter\/profile\/*"
            ],
            "js": [
                "recruiter_profile_content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "push_state.js"
            ],
            "run_at": "document_start"
        }
    ]
}