Metal Search

Look up selected text at popular Metal music related websites

Qu'est-ce que Metal Search ?

Metal Search est une extension Chrome développée par Ioannis Tziligkakis, et sa fonction principale est "Look up selected text at popular Metal music related websites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Metal Search

Téléchargez les fichiers d'extension Metal Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Did you ever want to be able to search for your favorite metal band in all popular metal websites with a single click for whatever reason? If the answer to this is yes, well... this extension has come for you! Put your hands together for... "Metal Search"!

This extension enables a new menu when you select and right-click text on a website that allows you to look up the text you've selected in one of the web magazines listed under the "Metal Search" menu or in all of them! A new tab (or multiple in case you went for all of them) will be created leading you to all results found for your highlighted keyword on that website.

Extremely useful for:

Bands who need an easy way to check popular websites about themselves, people involved in media that want an easy way to gather information for a band and last but not least every metalhead who wants to stay informed about his or her favorite metal bands all the time!

Let me know if you have any suggestions for fixes and/or improvements.

The source code for this can be found on Github

https://github.com/mentos/chrome-metal-search

Disclaimer: this is not the "ultimate" list of metal web magazines available but the ones I prefer using for looking up stuff. If you feel that more should go into that list drop me a line and we'll figure it out.                    

Informations de Base sur l'Extension

Nom Metal Search Metal Search
ID lnemicamjpmjdbfmjhhoocaplfgljkll
URL Officiel https://chrome.google.com/webstore/detail/metal-search/lnemicamjpmjdbfmjhhoocaplfgljkll
Description Look up selected text at popular Metal music related websites
Taille du Fichier 10.29 KB
Nombre d'Installations 37
Version Actuelle 0.1
Dernière Mise à Jour 2015-08-16
Date de Publication 2015-08-16
Évaluation 4.75/5 Total 4 Évaluations
Développeur Ioannis Tziligkakis
Type de Paiement free
Site Web de l'Extension https://github.com/mentos/chrome-metal-search
URL de la Page d'Aide https://github.com/mentos/chrome-metal-search
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Metal Search",
    "description": "Look up selected text at popular Metal music related websites",
    "short_name": "Metal Search",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}