Selfie Flip
Flips Selfie posted to social media
Was ist Selfie Flip?
Selfie Flip ist eine Chrome-Erweiterung, die von Faulty entwickelt wurde, und ihr Hauptmerkmal ist "Flips Selfie posted to social media".
Erweiterungsscreenshots
Selfie Flip-Erweiterungs-CRX-Datei herunterladen
Laden Sie Selfie Flip-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Allows anyone to flip selfies on sites like twitter with a single click, so text in the picture is easily readable. This extensions runs 100% locally! If you want this enabled for more sites or have ideas for this work in a different manner please let me know!
Grundlegende Informationen zur Erweiterung
Name | Selfie Flip |
ID | jmjaakkgomjbjbaohgpbgaeddaianeif |
Offizielle URL | https://chromewebstore.google.com/detail/selfie-flip/jmjaakkgomjbjbaohgpbgaeddaianeif |
Beschreibung | Flips Selfie posted to social media |
Dateigröße | 16.87 KB |
Installationsanzahl | 28 |
Aktuelle Version | 0.2 |
Letztes Update | 2022-05-08 |
Veröffentlichungsdatum | 2022-05-07 |
Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
Entwickler | Faulty |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Selfie Flip", "description": "Flips Selfie posted to social media", "version": "0.2", "manifest_version": 3, "web_accessible_resources": [ { "resources": [ "sflip24.png", "sflip48.png" ], "matches": [ "https:\/\/*.linkedin.com\/*", "https:\/\/*.twitter.com\/*", "https:\/\/*.twimg.com\/*", "https:\/\/*.facebook.com\/*" ] } ], "icons": { "48": "sflip48.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*", "https:\/\/*.twitter.com\/*", "https:\/\/*.twimg.com\/*", "https:\/\/*.facebook.com\/*" ], "css": [ "sflip.css" ], "js": [ "sflip.js" ], "run_at": "document_end" } ] } |