Smart Bookmarks

Intelligently pops up related articles that might interest you, based on your bookmarks.

Smart Bookmarks là gì?

Smart Bookmarks là một tiện ích mở rộng Chrome được phát triển bởi rahulr92, và tính năng chính của nó là "Intelligently pops up related articles that might interest you, based on your bookmarks.".

Ả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 Smart Bookmarks

Tải xuống các tệp mở rộng Smart Bookmarks 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

                        Intelligently pops up related articles that might interest you, based on your bookmarks. Select the notification to read the entire article in a new tab.                    

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

Tên Smart Bookmarks Smart Bookmarks
ID cjjdkckpfbjogcbpkbagcphfejfpnjkc
URL Chính Thức https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc
Mô tả Intelligently pops up related articles that might interest you, based on your bookmarks.
Kích Thước Tệp 58.15 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2016-06-23
Ngày Phát Hành 2016-06-23
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển rahulr92
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Bookmarks",
    "description": "Intelligently pops up related articles that might interest you, based on your bookmarks.",
    "version": "0.0.1",
    "author": "Rahul R",
    "homepage_url": "https:\/\/rahulr92.wordpress.com\/",
    "default_locale": "en",
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "init.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.lateral.io\/*"
        ]
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "init.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "bookmark.png",
        "48": "bookmark.png",
        "128": "bookmark.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "bookmark.png",
            "38": "bookmark.png"
        },
        "default_title": "Better Bookmark Button",
        "default_popup": "background.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "windows": "Ctrl+B",
                "mac": "Command+B",
                "chromeos": "Ctrl+B",
                "linux": "Ctrl+B"
            }
        }
    },
    "permissions": [
        "bookmarks",
        "tabs",
        "notifications"
    ]
}