Pagemarker

A simple Chrome extension that allows you to save positions in a page for fast re-visit

Pagemarker란 무엇입니까?

Pagemarker은(는) bravebeetle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple Chrome extension that allows you to save positions in a page for fast re-visit"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A simple chrome extension that allows you to save the scroll bar position in a regular web page for fast re-visit.

Once a page is loaded, click the Pagemarker extension icon and a bar with three default buttons will appear at the bottom right corner of your window; clicking the icon again will temporary hide it.

Default buttons:

1.Pagemark Button: It generates a new button which saves the current scroll bar position in the page, 

2.Top Button: It brings your back to the top of the page.

3.Move Button: It appears only when you hover your cursor over the Pagemarker. You can drag and drop the Pagemarker to anywhere in the window.

Note:

1.This extension doesn't support any web application which use it's own scroll bar, ex: pdf viewer, mail box, Google Drive...etc.

2.Reloading the page will reset the Pagemarker to default.                    

확장 프로그램 기본 정보

이름 Pagemarker Pagemarker
ID oheliokfcgehhjlhiiglekmbebigpbdj
공식 URL https://chromewebstore.google.com/detail/pagemarker/oheliokfcgehhjlhiiglekmbebigpbdj
설명 A simple Chrome extension that allows you to save positions in a page for fast re-visit
파일 크기 20.33 KB
설치 횟수 7,000
현재 버전 1.0.0
최근 업데이트 2013-10-02
출시 날짜 2013-10-02
평점 4.00/5 총 2 개의 평점
개발자 bravebeetle
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pagemarker",
    "description": "A simple Chrome extension that allows you to save positions in a page for fast re-visit",
    "version": "1.0.0",
    "icons": {
        "48": "Pagemarker48.png",
        "128": "Pagemarker128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*.pdf"
            ],
            "js": [
                "start.js",
                "draw.js",
                "mark.js",
                "marker.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "Pagemarker19_OFF.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "contentstyle.css"
    ]
}