Pride Flagging
Fight online homophobia word for word.
Pride Flaggingคืออะไร?
Pride Flagging เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pride Flagging และคุณลักษณะหลักของมันคือ "Fight online homophobia word for word."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pride Flagging
ดาวน์โหลดไฟล์ส่วนขยาย Pride Flagging ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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'" } |