Pride Flagging
Fight online homophobia word for word.
Pride Flagging란 무엇입니까?
Pride Flagging은(는) Pride Flagging에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fight online homophobia word for word."입니다.
확장 프로그램 스크린샷
Pride Flagging 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Pride Flagging is a collaborative project aiming to eliminate online homophobia and transphobia. Activate the browser extension on Twitter to automatically highlight hateful comments and easily flag them. As online bullying leads to 3 times more suicides in the LGBTQ+ community, we took it upon us to create a tool to educate and develop our collective reflex of reporting, flagging or marking offensive words or terms as inappropriate. We’re aiming to expand out of Twitter. Comments and suggestions welcome. Pride Flagging is an initiative of the Emergence Foundation, one of Canada’s leading LGBTQ+ rights organizations.
확장 프로그램 기본 정보
이름 | |
ID | hheoodencdcgllglokhmkhcmaadfafff |
공식 URL | https://chrome.google.com/webstore/detail/pride-flagging/hheoodencdcgllglokhmkhcmaadfafff |
설명 | Fight online homophobia word for word. |
파일 크기 | 67.23 KB |
설치 횟수 | 217 |
현재 버전 | 1.1 |
최근 업데이트 | 2019-08-14 |
출시 날짜 | 2019-08-09 |
평점 | 5.00/5 총 15 개의 평점 |
개발자 | Pride Flagging |
결제 유형 | free |
지원되는 언어 | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1", "manifest_version": 2, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-3.4.1.min.js", "content.js", "jquery-replacetext-plugin.js" ], "run_at": "document_end", "css": [ "style.css" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "__MSG__extName" }, "options_page": "options.html", "permissions": [ "https:\/\/twitter.com\/*", "storage", "activeTab", "tabs" ], "background": { "scripts": [ "jquery-3.4.1.min.js", "background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/*.png", "content.js", "popup.html", "images\/prideflag.png", "popup-style.css" ], "icons": { "16": "images\/prideflag16.png", "32": "images\/prideflag32.png", "48": "images\/prideflag48.png", "128": "images\/prideflag128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |