gata

Bookmarks made better

gata란 무엇입니까?

gata은(는) Evan Salter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmarks made better"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

gata 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}