View Other Facebook Photos
View facebook photos that aren't readily accessible.
View Other Facebook Photosคืออะไร?
View Other Facebook Photos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cambrian Labs และคุณลักษณะหลักของมันคือ "View facebook photos that aren't readily accessible."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย View Other Facebook Photos
ดาวน์โหลดไฟล์ส่วนขยาย View Other Facebook Photos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | bhbccankdcgdojmbngaleaajnobibifp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp |
คำอธิบาย | View facebook photos that aren't readily accessible. |
ขนาดไฟล์ | 6.2 KB |
จำนวนการติดตั้ง | 372 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2018-02-10 |
วันที่เผยแพร่ | 2018-02-10 |
คะแนน | 1.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Cambrian Labs |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "View Other Facebook Photos", "description": "View facebook photos that aren't readily accessible.", "version": "1.1", "background": { "scripts": [ "popup.js" ] }, "icons": { "16": "print_16x16.png", "48": "print_16x16.png", "128": "print_16x16.png" }, "permissions": [ "storage", "tabs" ], "browser_action": { "default_popup": "popup.html", "default_title": "Test Extension" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |