bookmarks on tab like opera

Bookmarks on tab like opera. Build on React.js.

bookmarks on tab like opera là gì?

bookmarks on tab like opera là một tiện ích mở rộng Chrome được phát triển bởi bespalov.av, và tính năng chính của nó là "Bookmarks on tab like opera. Build on React.js.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng bookmarks on tab like opera

Tải xuống các tệp mở rộng bookmarks on tab like opera dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Bookmarks on tab like opera created by react.js.

В браузере Opera удобно реализовали панель закладок. Тем не менее Chrome отличный браузер, к нему много полезных расширений нужных для программиста. Я и решил сделать расширение для chrome, которое бы выводило закладки, как в opera.

Как работает расширение: Оно берет ваши текущие закладки и выводит и в виде блоков. Для взаимодействия можно кликнуть на цветной блок будет открыта ссылка. Если кликнуть на серую папку, то будет открыт popup с содержимым папки. Если в папке с закладками было более 4 закладок, то чтобы их все увидеть надо кликнуть по заголовку блока. Все взаимодействие с закладками остается стандартными средствами Chrome. Мое расширение только выводит закладки на на страницу в виде плиток.

****************************************************************************
In Opera is conveniently realized the bookmark. However, Chrome is a great browser, it has a lot of useful extensions needed for the programmer. I decided to make an extension for chrome, which would display bookmarks, as in opera.

How the extension works: It takes your current bookmarks and displays them as blocks. To interact, you can click on the color block will open a link. If you click on the gray folder, it will open a popup with the contents of the folder. If there were more than 4 bookmarks in the bookmarks folder, click on the block header to see them all. All interaction with the tabs remains the standard means Chrome. My extension only displays bookmarks on the page as tiles.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên bookmarks on tab like opera bookmarks on tab like opera
ID fekllnfikeakbamleglbjpinljomhfli
URL Chính Thức https://chromewebstore.google.com/detail/bookmarks-on-tab-like-ope/fekllnfikeakbamleglbjpinljomhfli
Mô tả Bookmarks on tab like opera. Build on React.js.
Kích Thước Tệp 66.43 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2019-04-30
Ngày Phát Hành 2019-04-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển bespalov.av
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Bespalov-AV/bookmarks-on-tab-like-opera-react-ext
Ngôn Ngữ Được Hỗ Trợ ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "bookmarks on tab like opera",
    "version": "0.0.6",
    "description": "Bookmarks on tab like opera. Build on React.js.",
    "author": "[email protected]",
    "homepage_url": "https:\/\/github.com\/Bespalov-AV\/bookmarks-on-tab-like-opera-react-ext",
    "permissions": [
        "declarativeContent",
        "storage",
        "activeTab",
        "bookmarks",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "browser_action": {
        "default_title": "Boolmarks"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}