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 |
官方網址 | 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 |
電子郵箱 | [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 } |