Bookmark All

Extends chrome's bookmark all tabs feature across all open windows.

Bookmark All란 무엇입니까?

Bookmark All은(는) Andrew Sutherland에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends chrome's bookmark all tabs feature across all open windows."입니다.

확장 프로그램 스크린샷

screenshot

Bookmark All 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Super simple extension. Extends chrome's 'Bookmark all Tabs' feature across all open windows. 

Click the icon, choose your folder (ISO 8601 Short by default) and every tab in every window is bookmarked into the new folder under 'Other Bookmarks'. That's it!

This extension is open sourced on github, see Details > Website.                    

확장 프로그램 기본 정보

이름 Bookmark All Bookmark All
ID jjhpikpjjhlcmifagompgmhkjalhjopj
공식 URL https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj
설명 Extends chrome's bookmark all tabs feature across all open windows.
파일 크기 67 KB
설치 횟수 3,483
현재 버전 4
최근 업데이트 2013-08-26
출시 날짜 2013-08-26
평점 4.18/5 총 34 개의 평점
개발자 Andrew Sutherland
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/drewis/chrome_extension_bookmark_all
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "4",
    "name": "Bookmark All",
    "author": "Andrew Sutherland",
    "description": "Extends chrome's bookmark all tabs feature across all open windows.",
    "permissions": [
        "bookmarks",
        "tabs"
    ],
    "icons": {
        "128": "star_icons_128.png",
        "48": "star_icons_48.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "star_icons_19.png",
            "38": "star_icons_38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Bookmark All"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}