Photos Tagged

This extension will add a button on Facebook™ to show photos that the current profile was tagged in

Photos Taggedคืออะไร?

Photos Tagged เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ran Mariuma และคุณลักษณะหลักของมันคือ "This extension will add a button on Facebook™ to show photos that the current profile was tagged in"

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

screenshot

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

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

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

                        This extension helps you find photos in Facebook™ of people by observing their friends' photos they were tagged in. Easily and free, just install the extension and click the new button on Facebook™ profile page, under photos ('Photos Tagged').

This is an open source extension and the source code is hosted in github:
https://github.com/maryum375/Photos-tagged                    

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

ชื่อ Photos Tagged Photos Tagged
ID ganlbkinkbapfndplimhpeajajmkbgno
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/photos-tagged/ganlbkinkbapfndplimhpeajajmkbgno
คำอธิบาย This extension will add a button on Facebook™ to show photos that the current profile was tagged in
ขนาดไฟล์ 7.08 KB
จำนวนการติดตั้ง 668
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2017-10-10
วันที่เผยแพร่ 2017-10-10
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Ran Mariuma
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/maryum375/Photos-tagged
URL หน้าช่วยเหลือ https://github.com/maryum375/Photos-tagged
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Photos Tagged",
    "short_name": "Photos Tagged",
    "description": "This extension will add a button on Facebook\u2122 to show photos that the current profile was tagged in",
    "version": "1.1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "addphotosofbutton.js"
            ],
            "run_at": "document_start"
        }
    ]
}