Nicknamer

Replace your friends' or enemies' names with their nicknames.

Vad är Nicknamer?

Nicknamer är en Chrome-tillägg utvecklad av https://www.molanglois.com, och dess huvudfunktion är "Replace your friends' or enemies' names with their nicknames.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

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

Ladda ner Nicknamer-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

                        The Nicknamer extension enables you to replace text on any web pages you are visiting.

Simply type in the name or text you want to transform and the name it is transformed to and click "+". You will see the changes in your browser. The list of names is saved with your browser and works whenever you open one. You can clear the list by clicking "-" button. 

**Prank tip: Right click the extension and choose "Hide in the Chrome Menu". **                    

Grundläggande Information om Tillägg

Namn Nicknamer Nicknamer
ID ahhpgbiejgpebbokpbgcenooehhcnbjd
Officiell webbadress https://chromewebstore.google.com/detail/nicknamer/ahhpgbiejgpebbokpbgcenooehhcnbjd
Beskrivning Replace your friends' or enemies' names with their nicknames.
Filstorlek 39.39 KB
Antal Installationer 396
Aktuell Version 1.0
Senast Uppdaterad 2016-04-10
Publiceringsdatum 2016-04-10
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare https://www.molanglois.com
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nicknamer ",
    "description": "Replace your friends' or enemies' names with their nicknames.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Nicknamer",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon128.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}