Turdifier
Let you select some words that will be replaced by the poo emoji on every pages
Turdifierとは何ですか?
Turdifierはhttp://antoine.workによって開発されたChromeの拡張機能で、その主な機能は「Let you select some words that will be replaced by the poo emoji on every pages」です。
拡張機能のスクリーンショット
Turdifier拡張機能のCRXファイルをダウンロード
Turdifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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]
拡張機能の基本情報
名前 | |
ID | pacfpdfkogneijkijmgjhdfghhfklbno |
公式URL | https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno |
説明 | Let you select some words that will be replaced by the poo emoji on every pages |
ファイルサイズ | 28.17 KB |
インストール数 | 58 |
現在のバージョン | 1.0 |
最終更新日 | 2017-11-02 |
公開日 | 2017-11-02 |
評価 | 4.00/5 合計 8 レビュー |
開発者 | http://antoine.work |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://lab.antoine.work/turdifier/ |
対応言語 | 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 } |