Turdifier
Let you select some words that will be replaced by the poo emoji on every pages
Wat is Turdifier?
Turdifier is een Chrome-extensie ontwikkeld door http://antoine.work, en de belangrijkste functie is "Let you select some words that will be replaced by the poo emoji on every pages".
Extensie Screenshots
Download het CRX-bestand van de extensie Turdifier
Download Turdifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension let you choose a list of words that will be replaced by the "pile of poo" unicode character. The original font size of the word will be unchanged. It also replace the choosen words in page title but might produce weird characters on old OS. Found a bug ? need a feature ? Please send me a mail at [email protected]
Basisinformatie over de Extensie
Naam | |
ID | pacfpdfkogneijkijmgjhdfghhfklbno |
Officiële URL | https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno |
Beschrijving | Let you select some words that will be replaced by the poo emoji on every pages |
Bestandsgrootte | 28.17 KB |
Aantal Installaties | 58 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-11-02 |
Publicatiedatum | 2017-11-02 |
Beoordeling | 4.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | http://antoine.work |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://lab.antoine.work/turdifier/ |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Turdifier", "short_name": "Turdifier", "description": "Let you select some words that will be replaced by the poo emoji on every pages", "version": "1.0", "icons": { "128": "icon_128.png" }, "author": "Antoine Guillien", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "browser_action": { "default_title": "Turdify", "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "popup.js" ], "persistent": false }, "manifest_version": 2 } |