Peace Without Politics for Facebook
Hides any reference to currently relevant political terms when using Facebook.
Peace Without Politics for Facebook란 무엇입니까?
Peace Without Politics for Facebook은(는) https://bradleyosborne.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides any reference to currently relevant political terms when using Facebook."입니다.
확장 프로그램 스크린샷
Peace Without Politics for Facebook 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features include: - The ability to turn the extension off by clicking the switch "ON" or "OFF" - The ability to hide posts completely, instead of blocking them, so no "This post is related to politics, Click to show post", posts are just hidden automatically - The ability to specify any additional terms that you don't want to see
확장 프로그램 기본 정보
이름 | Peace Without Politics for Facebook |
ID | okmaggpopgcpgbcfgedkpjolcfaflbjo |
공식 URL | https://chromewebstore.google.com/detail/peace-without-politics-fo/okmaggpopgcpgbcfgedkpjolcfaflbjo |
설명 | Hides any reference to currently relevant political terms when using Facebook. |
파일 크기 | 236 KB |
설치 횟수 | 30 |
현재 버전 | 1.8 |
최근 업데이트 | 2021-04-04 |
출시 날짜 | 2019-01-15 |
개발자 | https://bradleyosborne.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Peace Without Politics for Facebook", "short_name": "PWP", "description": "Hides any reference to currently relevant political terms when using Facebook.", "version": "1.8", "browser_action": { "default_icon": "assets\/icons\/icon128.png", "default_popup": "popup.html", "default_title": "Peace Without Politics" }, "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "background": { "scripts": [ "scripts\/constants.js", "scripts\/helpers.js", "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "css": [ "styles\/content.css" ], "js": [ "scripts\/vendor\/jquery.min.js", "scripts\/constants.js", "scripts\/helpers.js", "scripts\/content.js" ] } ], "permissions": [ "activeTab", "storage" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |