Dark Theme for Facebook™
A schedulable and customizable dark theme for facebook.com and messenger.com
Dark Theme for Facebook™란 무엇입니까?
Dark Theme for Facebook™은(는) balvin.perrie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A schedulable and customizable dark theme for facebook.com and messenger.com"입니다.
확장 프로그램 스크린샷
Dark Theme for Facebook™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides a native dark theme for both facebook.com and messenger.com. It applies the native coloring by altering the original colors to bring a dark appearance. This theme is customizable from the options page. Also, the user can inject custom CSS styles into these websites to improve the styling and make it more personalized. You can turn the dark theme on and off from the toolbar button (action button). Also, it is possible to set a schedule (e.g., night-time duration only) to automatically turn the extension on and off. Features: 1. Uses the original theme 2. Does not invert colors 3. Supports single-click on and off feature 4. Supports schedule on and off 5. Does not mess up the original theme 6. Supports user styling -- Note that this theme is only meant to improve Facebook usage and has nothing to do with Faebook.com. It is a free, open-source project.
확장 프로그램 기본 정보
이름 | Dark Theme for Facebook™ |
ID | ljejflbohdohfkchnbdeibjmcebhkgkj |
공식 URL | https://chromewebstore.google.com/detail/dark-theme-for-facebook/ljejflbohdohfkchnbdeibjmcebhkgkj |
설명 | A schedulable and customizable dark theme for facebook.com and messenger.com |
파일 크기 | 54.51 KB |
설치 횟수 | 3,563 |
현재 버전 | 0.2.0 |
최근 업데이트 | 2022-05-11 |
출시 날짜 | 2018-10-02 |
평점 | 4.53/5 총 15 개의 평점 |
개발자 | balvin.perrie |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/belaviyo/dark-theme/ |
개인정보 보호 정책 페이지 URL | https://add0n.com/policies/balvin.perrie.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.2.0", "name": "Dark Theme for Facebook\u2122", "description": "__MSG_app_description__", "default_locale": "en", "permissions": [ "storage", "alarms", "idle" ], "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/*.messenger.com\/*" ], "js": [ "data\/inject.js" ], "css": [ "data\/styles\/common.css" ], "run_at": "document_start", "all_frames": true } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "homepage_url": "https:\/\/add0n.com\/dark-theme.html?from=facebook", "options_ui": { "page": "data\/options\/index.html" }, "action": [], "commands": { "_execute_action": [] } } |