Turdifier
Let you select some words that will be replaced by the poo emoji on every pages
Cos'è Turdifier?
Turdifier è un'estensione di Chrome sviluppata da http://antoine.work, e la sua funzione principale è "Let you select some words that will be replaced by the poo emoji on every pages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Turdifier
Scarica i file di estensione Turdifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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]
Informazioni di Base sull'Estensione
Nome | |
ID | pacfpdfkogneijkijmgjhdfghhfklbno |
URL Ufficiale | https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno |
Descrizione | Let you select some words that will be replaced by the poo emoji on every pages |
Dimensione del File | 28.17 KB |
Conteggio Installazioni | 58 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-11-02 |
Data di Pubblicazione | 2017-11-02 |
Valutazione | 4.00/5 Totale 8 Valutazioni |
Sviluppatore | http://antoine.work |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://lab.antoine.work/turdifier/ |
Lingue Supportate | 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 } |