Alias Bookmarks

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

Alias Bookmarksคืออะไร?

Alias Bookmarks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Achernar และคุณลักษณะหลักของมันคือ "Set aliases for your bookmarks. Aliases are called from the omnibox: "/ aliasName [params]" and from the popup (ctrl+.)"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Alias Bookmarks

ดาวน์โหลดไฟล์ส่วนขยาย Alias Bookmarks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}