Simple Facebook Customizer
Customize Facebook any way you want
Simple Facebook Customizer란 무엇입니까?
Simple Facebook Customizer은(는) Dawid Sobotka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize Facebook any way you want"입니다.
확장 프로그램 스크린샷
Simple Facebook Customizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Change default Facebook look with any combination of either custom defined or predefined settings. Hiding various bars, notifications, messages and more! Remove elements that bother you or you simply don't like the look of them. Need was the mother of this extension - installing an extension and simply checking wanted toggles is way easier than editing browser custom CSS's every time you want to make persistent stylesheet for a website - in this case Facebook. Feedback highly appreciated, ideas or requests for any features will be taken into account and maybe implemented in the near future.
확장 프로그램 기본 정보
이름 | Simple Facebook Customizer |
ID | lggklkfbhcbpdighlgjicacbddhjabni |
공식 URL | https://chromewebstore.google.com/detail/simple-facebook-customize/lggklkfbhcbpdighlgjicacbddhjabni |
설명 | Customize Facebook any way you want |
파일 크기 | 80.9 KB |
설치 횟수 | 27 |
현재 버전 | 0.5.1 |
최근 업데이트 | 2023-03-20 |
출시 날짜 | 2022-02-01 |
개발자 | Dawid Sobotka |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sobekcore/simple-facebook-customizer |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Facebook Customizer", "description": "Customize Facebook any way you want", "manifest_version": 3, "version": "0.5.1", "permissions": [ "storage", "tabs" ], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "action": { "default_popup": "packages\/popup\/dist\/popup.html", "default_title": "Simple Facebook Customizer", "default_icon": { "16": "icons\/inactive\/16.png", "32": "icons\/inactive\/32.png", "48": "icons\/inactive\/48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.facebook.com\/*" ], "run_at": "document_start", "js": [ "packages\/content\/dist\/content.js" ] } ], "background": { "service_worker": "packages\/background\/dist\/background.js" } } |