SiteBookmarks

View your bookmarks on the current site from the context (right-click) menu.

Что такое SiteBookmarks?

SiteBookmarks - это расширение Chrome, разработанное https://site.simonandrewbrown.co.uk, и его основная функция - "View your bookmarks on the current site from the context (right-click) menu.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения SiteBookmarks

Скачайте файлы расширений SiteBookmarks в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Adds a context-menu item listing all your bookmarks on the current site. If you have a lot of bookmarks, this makes it easier to go to your favourite pages on the specific site without hunting through your bookmarks.

Source code:
https://github.com/simonbrown/Site-Bookmarks                    

Основная информация о расширении

Название SiteBookmarks SiteBookmarks
ID mijccbhecmjbiepdfpbnknpjeiggnomn
Официальный URL https://chromewebstore.google.com/detail/sitebookmarks/mijccbhecmjbiepdfpbnknpjeiggnomn
Описание View your bookmarks on the current site from the context (right-click) menu.
Размер файла 49.92 KB
Количество установок 91
Текущая Версия 1.6
Последнее Обновление 2012-11-05
Дата публикации 2012-11-05
Рейтинг 4.18/5 Всего 11 оценок
Разработчик https://site.simonandrewbrown.co.uk
Тип оплаты free
Официальный сайт расширения http://www.isimonbrown.co.uk/contact/
URL страницы помощи http://www.isimonbrown.co.uk/contact/
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SiteBookmarks",
    "description": "View your bookmarks on the current site from the context (right-click) menu.",
    "version": "1.6",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "permissions": [
        "bookmarks",
        "contextMenus"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "20.0"
}