Haddock
This extension inserts a random insult from Capt. Haddock in a text field
What is Haddock?
Haddock is a Chrome extension developed by Phalexei, and its main feature is "This extension inserts a random insult from Capt. Haddock in a text field".
Extension Screenshots
Download Haddock Extension CRX File
Download Haddock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The extension gathers all known expletives (in french) from Capt. Haddock (in Les Aventures de Tintin, by Hergé) and allows you to insult anyone as easily as a right-click ! Cette extension récupère tous les quolibets du Capitaine Haddock (des Aventures de Tintin) et vous permet d'insulter qui vous voulez sur un simple clic-droit.
Extension Basic Information
Name | Haddock |
ID | hodcoaichoodeleeolijdcnfbjeaoaba |
Official URL | https://chromewebstore.google.com/detail/haddock/hodcoaichoodeleeolijdcnfbjeaoaba |
Description | This extension inserts a random insult from Capt. Haddock in a text field |
File Size | 38.86 KB |
Installation Count | 29 |
Current Version | 1.1.0.2 |
Last Updated | 2019-07-31 |
Publish Date | 2019-07-30 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Phalexei |
Payment Type | free |
Supported Languages | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Haddock", "description": "This extension inserts a random insult from Capt. Haddock in a text field", "version": "1.1.0.2", "permissions": [ "tabs", "contextMenus", "http:\/\/fr.m.wikipedia.org\/" ], "background": { "page": "background.html" }, "icons": { "16": "icon16.png" }, "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "Random Haddock" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js", "jquery.min.js" ] } ], "commands": { "haddock-shortcut": { "suggested_key": { "default": "Ctrl+G" }, "description": "Insert random Haddock expletive" } } } |