Alias Bookmarks

Set aliases for your bookmarks. Aliases are called from the omnibox: "/ aliasName [params]" and from the popup (ctrl+.)

Alias Bookmarks란 무엇입니까?

Alias Bookmarks은(는) Achernar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set aliases for your bookmarks. Aliases are called from the omnibox: "/ aliasName [params]" and from the popup (ctrl+.)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension mimics the ability of Firefox and mozilla based browsers to use aliases as a shortcut to call specific bookmarks.

It allows you to set alias/shortcut for your URL or javascript bookmarklets or folders, directly in the bookmark manager. You can then call an alias from chrome's omnibox or from the extension's popup window (keyboard shortcut: "ctrl+.").
Simple "http(s)" bookmarks as well as javascript bookmarklets can be called with or without parameters.
If it works as a bookmark, it works as an alias.

Since your aliases are stored with your bookmarks, exporting or transfering them also tranfers the aliases.

Starting with version 0.9.6.15, folder alias is available. It can be used to open static pages, or to make a group search on multiple search sites (examples provided).

Version 0.9.8 introduces auto-completion in popup window (see options page to enable).                    

확장 프로그램 기본 정보

이름 Alias Bookmarks Alias Bookmarks
ID oglbhaepiihmmmaipmglkfhbaahhbkec
공식 URL https://chrome.google.com/webstore/detail/alias-bookmarks/oglbhaepiihmmmaipmglkfhbaahhbkec
설명 Set aliases for your bookmarks. Aliases are called from the omnibox: "/ aliasName [params]" and from the popup (ctrl+.)
파일 크기 54.04 KB
설치 횟수 134
현재 버전 0.9.8
최근 업데이트 2018-09-02
출시 날짜 2018-09-02
평점 5.00/5 총 3 개의 평점
개발자 Achernar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://users.skynet.be/alternity/programming/
지원되는 언어 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.9.8",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "bookmarks",
        "storage",
        "notifications",
        "contextMenus",
        ""
    ],
    "optional_permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Period"
            }
        }
    },
    "icons": {
        "128": "icon_s128.png",
        "16": "icon_s16.png",
        "19": "icon_s19.png",
        "48": "icon_s48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "sandbox": {
        "pages": [
            "ev_sand.html"
        ]
    },
    "omnibox": {
        "keyword": "\/"
    },
    "browser_action": {
        "default_title": "Alias Bookmarks",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'"
}