Turdifier

Let you select some words that will be replaced by the poo emoji on every pages

Vad är Turdifier?

Turdifier är en Chrome-tillägg utvecklad av http://antoine.work, och dess huvudfunktion är "Let you select some words that will be replaced by the poo emoji on every pages".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Turdifier-förlängningens CRX-fil

Ladda ner Turdifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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]                    

Grundläggande Information om Tillägg

Namn Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
Officiell webbadress https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
Beskrivning Let you select some words that will be replaced by the poo emoji on every pages
Filstorlek 28.17 KB
Antal Installationer 58
Aktuell Version 1.0
Senast Uppdaterad 2017-11-02
Publiceringsdatum 2017-11-02
Betyg 4.00/5 Totalt 8 Betyg
Utvecklare http://antoine.work
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://lab.antoine.work/turdifier/
Stödda Språk 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
}