metaTaber

Perform various tasks on your current tab.

metaTaber क्या है?

metaTaber https://metacular.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Perform various tasks on your current tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में metaTaber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Whenever you resize the screen, a tooltip will display in the upper right corner with the sizes of the screen and the window.

If you click the browser icon, your current tab will turn into a popup window.

If you press Alt+P, your current tab will toggle between being pinned.

If you press Alt+K or Alt+J, the last number in the URL will increment or decrement (e.g. "page01.htm" becomes "page02.htm").

If you press Alt+Y while on YouTube, it will toggle between an embedded (pseudo-full-screen) video.                    

एक्सटेंशन की मूल जानकारी

नाम metaTaber metaTaber
ID bfobjnddngabheobmidmdifcfaifjpbb
आधिकारिक URL https://chromewebstore.google.com/detail/metataber/bfobjnddngabheobmidmdifcfaifjpbb
विवरण Perform various tasks on your current tab.
फ़ाइल का आकार 150 KB
स्थापना संख्या 9
वर्तमान संस्करण 13.418
अंतिम अपडेट 2013-04-18
प्रकाशन तिथि 2013-04-18
डेवलपर https://metacular.net
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "browser_action": {
        "default_icon": "icon016.png",
        "default_title": "Open the current tab as a popup"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Perform various tasks on your current tab.",
    "commands": {
        "embedtube": {
            "description": "Toggle YouTube Embedding",
            "suggested_key": {
                "default": "Alt+Y"
            }
        },
        "incrementurl": {
            "description": "Increment URL",
            "suggested_key": {
                "default": "Alt+K"
            }
        },
        "decrementurl": {
            "description": "Decrement URL",
            "suggested_key": {
                "default": "Alt+J"
            }
        },
        "pintoggle": {
            "description": "Toggle pinned state of current tab",
            "suggested_key": {
                "default": "Alt+P"
            }
        }
    },
    "background": {
        "scripts": [
            "popup.js",
            "commands.js"
        ]
    },
    "name": "metaTaber",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "icon048.png",
        "128": "icon128.png",
        "16": "icon016.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "sizetip.js"
            ],
            "run_at": "document_end",
            "css": [
                "sizetip.css"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "13.418"
}