View Other Facebook Photos
View facebook photos that aren't readily accessible.
What is View Other Facebook Photos?
View Other Facebook Photos is a Chrome extension developed by Cambrian Labs, and its main feature is "View facebook photos that aren't readily accessible.".
Download View Other Facebook Photos Extension CRX File
Download View Other Facebook Photos extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | ![]() |
ID | bhbccankdcgdojmbngaleaajnobibifp |
Official URL | https://chrome.google.com/webstore/detail/view-other-facebook-photo/bhbccankdcgdojmbngaleaajnobibifp |
Description | View facebook photos that aren't readily accessible. |
File Size | 6.2 KB |
Installation Count | 372 |
Current Version | 1.1 |
Last Updated | 2018-02-10 |
Publish Date | 2018-02-10 |
Rating | 1.00/5 Total 2 Ratings |
Developer | Cambrian Labs |
Payment Type | free |
Supported Languages | 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" } ] } |