Hamburger Menu

Replace the hamburger menu icon on various websites.

什麼是Hamburger Menu?

Hamburger Menu是由Sarah Vessels開發的Chrome擴展程式,該擴展的主要功能是“Replace the hamburger menu icon on various websites.”。

擴展截圖

screenshot

下載Hamburger Menu擴展crx文件

下載Hamburger Menu擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Tired of seeing three bars for a menu or to indicate something is grabbable? No more! Now you can see an actual hamburger or hotdog. You can also right click elements on the page and choose to see a hamburger/hotdog there instead.

Customizable! Choose between a mouthwatering hamburger or hotdog. With Hamburger Menu, the choice is yours.

Change Log:

Version 0.0.3:

Fixed bug where you could hamburgerify something and an empty CSS selector would be saved. Better hamburgerification of images and Font Awesome icon overrides.

Version 0.0.2:

Adds a popup that lets you view your overrides for that host. Allows you to edit hamburger overrides on the options page and in the popup. Popup provides help for how to use the extension as well as linking to the options page.

Version 0.0.1:

Initial release. Provides ability to right-click elements on the page and make them display as a hotdog or hamburger. Has an options page to choose between hotdogs and hamburgers. Allows removal of custom overrides via options page. Automatically replaces particular icons from Font Awesome, Octicons, Glyphicons, Material Icons, Ionicons, Foundation, and Elusive with a hamburger or hotdog.                    

擴展基本資訊

名稱 Hamburger Menu Hamburger Menu
ID eilghennaccfpohmdffhdpckacgdaohe
官方網址 https://chromewebstore.google.com/detail/hamburger-menu/eilghennaccfpohmdffhdpckacgdaohe
簡介 Replace the hamburger menu icon on various websites.
檔案大小 501 KB
安裝次數 304
目前版本 0.0.3
更新時間 2016-06-19
上架時間 2016-06-19
評分 4.17/5 共 6 次評分
開發者 Sarah Vessels
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/cheshire137/hamburger-menu
說明頁面URL https://github.com/cheshire137/hamburger-menu/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hamburger Menu",
    "short_name": "Hamburger Menu",
    "description": "Replace the hamburger menu icon on various websites.",
    "version": "0.0.3",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "storage.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html",
        "default_title": "Hamburger Menu Overrides"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "storage.js",
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "hotdog.png",
        "hamburger.png"
    ]
}