Smart Bookmarks

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

Smart Bookmarks란 무엇입니까?

Smart Bookmarks은(는) rahulr92에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Intelligently pops up related articles that might interest you, based on your bookmarks."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Smart Bookmarks Smart Bookmarks
ID cjjdkckpfbjogcbpkbagcphfejfpnjkc
공식 URL https://chrome.google.com/webstore/detail/smart-bookmarks/cjjdkckpfbjogcbpkbagcphfejfpnjkc
설명 Intelligently pops up related articles that might interest you, based on your bookmarks.
파일 크기 58.15 KB
설치 횟수 10
현재 버전 0.0.1
최근 업데이트 2016-06-23
출시 날짜 2016-06-23
평점 3.50/5 총 2 개의 평점
개발자 rahulr92
결제 유형 free
지원되는 언어 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"
    ]
}