Metal Search

Look up selected text at popular Metal music related websites

Metal Search là gì?

Metal Search là một tiện ích mở rộng Chrome được phát triển bởi Ioannis Tziligkakis, và tính năng chính của nó là "Look up selected text at popular Metal music related websites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Metal Search

Tải xuống các tệp mở rộng Metal Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Metal Search Metal Search
ID lnemicamjpmjdbfmjhhoocaplfgljkll
URL Chính Thức https://chrome.google.com/webstore/detail/metal-search/lnemicamjpmjdbfmjhhoocaplfgljkll
Mô tả Look up selected text at popular Metal music related websites
Kích Thước Tệp 10.29 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2015-08-16
Ngày Phát Hành 2015-08-16
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Ioannis Tziligkakis
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mentos/chrome-metal-search
URL Trang Trợ Giúp https://github.com/mentos/chrome-metal-search
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}