facebook fullscreen
makes facebook apps and games go fullscreen
What is facebook fullscreen?
facebook fullscreen is a Chrome extension developed by eliranwebdev, and its main feature is "makes facebook apps and games go fullscreen".
Download facebook fullscreen Extension CRX File
Download facebook fullscreen 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 | pjcdeachgolnlbkfafofginfgjicjpig |
Official URL | https://chromewebstore.google.com/detail/facebook-fullscreen/pjcdeachgolnlbkfafofginfgjicjpig |
Description | makes facebook apps and games go fullscreen |
File Size | 7.75 KB |
Installation Count | 73 |
Current Version | 0.1.6 |
Last Updated | 2016-02-18 |
Publish Date | 2016-02-18 |
Rating | 4.00/5 Total 6 Ratings |
Developer | eliranwebdev |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "facebook fullscreen", "description": "makes facebook apps and games go fullscreen", "version": "0.1.6", "permissions": [ "activeTab" ], "web_accessible_resources": [ "images\/*.png" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/apps.facebook.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "browser_action": { "default_title": "go fullscreen", "default_icon": "images\/logo-48.png" }, "icons": { "48": "images\/logo-48.png", "96": "images\/logo-96.png", "128": "images\/logo-128.png" }, "manifest_version": 2 } |