gata

Bookmarks made better

gata क्या है?

gata Evan Salter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmarks made better"।

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

screenshot
screenshot
screenshot

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

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

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

                        gata helps you find the information you need, quicker than ever.

gata allows you to define dynamic shortcuts allowing you to jump to the page you need, when you need it. Just supply gata with a URL, define some variables, and you're done!

Examples include:
- Going to a Twitter profile
- Jumping to a specific repository on Github
- Viewing your favourite Reddit, sorted how you choose

HOW DOES IT WORK?

To create a shortcut to go to a Twitter profile, we'll provide the URL "https://twitter.com/%s"

The "%s" signifies a variable. This is the part that you are going to fill in when you access the shortcut.

When you go to use this shortcut, gata will prompt you to enter the username you want to access and take you there.

FEATURES

- Keyboard navigation - access all your shortcuts without using your mouse
- Syncing - your shortcuts are synced across Chrome browsers that are signed in with the same account

OPEN SOURCE

The code for this project is hosted on GitHub at https://github.com/evansalter/gata, where the code can be viewed and contributed to. If you discover any issues with this extension, feel free to create an issue on GitHub or email me at [email protected]                    

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

नाम gata gata
ID oidckhmhcapggoekanlbdgfckcjccphk
आधिकारिक URL https://chromewebstore.google.com/detail/gata/oidckhmhcapggoekanlbdgfckcjccphk
विवरण Bookmarks made better
फ़ाइल का आकार 1.75 MB
स्थापना संख्या 13
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-02-11
प्रकाशन तिथि 2020-02-11
डेवलपर Evan Salter
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/evansalter/gata
सहायता पृष्ठ URL https://github.com/evansalter/gata/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gata",
    "version": "1.0.0",
    "description": "Bookmarks made better",
    "manifest_version": 2,
    "icons": {
        "128": "graphics_Large Icon.png",
        "48": "graphics_Medium Icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Period"
            },
            "description": "Opens the command palette"
        }
    }
}