Layout Switcher for Facebook
Switch From New Facebook Layout Back to Old Facebook Layout in a Simple Click!
Layout Switcher for Facebook란 무엇입니까?
Layout Switcher for Facebook은(는) http://fblayoutswitcher.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch From New Facebook Layout Back to Old Facebook Layout in a Simple Click!"입니다.
확장 프로그램 스크린샷
Layout Switcher for Facebook 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Switch Back from New Facebook Layout to Old Version Classic Facebook. Convert the new Facebook layout to the old Facebook layout in a simple click and secure. Update Logs: - Versions 3.0.3: update extensions permissions - Versions 3.0.1: update error on browser agents - Versions 2.0.0: switch to old layout with browser agents For us it's important to say that we are not related in any way to Facebook which is a registered trademark of Facebook Inc., registered in the US and other countries. We are neither endorsed nor affiliated with but rather are an independent group of developers. If you find any bugs or have other questions please don't hesitate to contact us via our contact email. In case you have questions regarding your privacy, please check out our privacy policy.
확장 프로그램 기본 정보
이름 | |
ID | mfblmhhbadopmchemopfhnonbljgoeoa |
공식 URL | https://chrome.google.com/webstore/detail/layout-switcher-for-faceb/mfblmhhbadopmchemopfhnonbljgoeoa |
설명 | Switch From New Facebook Layout Back to Old Facebook Layout in a Simple Click! |
파일 크기 | 57.06 KB |
설치 횟수 | 985 |
현재 버전 | 3.0.3 |
최근 업데이트 | 2020-11-05 |
출시 날짜 | 2020-10-22 |
평점 | 2.00/5 총 23 개의 평점 |
개발자 | http://fblayoutswitcher.blogspot.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://fblayoutswitcher.blogspot.com |
도움말 페이지 URL | https://fblayoutswitcher.blogspot.com |
개인정보 보호 정책 페이지 URL | https://fblayoutswitcher.blogspot.com/p/1-privacy-policy-chromium-extension.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Switch From New Facebook Layout Back to Old Facebook Layout in a Simple Click!", "manifest_version": 2, "name": "Layout Switcher for Facebook", "author": "ProDev", "version": "3.0.3", "homepage_url": "https:\/\/fblayoutswitcher.blogspot.com\/", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "Switch Back to Old Facebook Layout" }, "permissions": [ "activeTab", "*:\/\/*.facebook.com\/*" ], "background": { "scripts": [ "js\/jquery.js", "js\/background.js" ] }, "web_accessible_resources": [ "index.html" ], "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "js\/jquery.js", "js\/index.js" ], "css": [ "css\/index.css" ], "all_frames": true, "run_at": "document_start" } ] } |