Purple Rails stable

Encrypted archiving and bookmarking of web pages in the cloud!

Purple Rails stable란 무엇입니까?

Purple Rails stable은(는) https://www.purplerails.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Encrypted archiving and bookmarking of web pages in the cloud!"입니다.

확장 프로그램 스크린샷

Purple Rails stable 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Purple Rails is an encrypted bookmarks webapp that automatically archives whole web pages (including images), in addition to saving the URL (aka link). The archiving feature also works on unbookmarkable web pages such as purchase confirmations. Also works on pages that require special access such a login or IP address restrictions to view.

All data is encrypted with your password on your own computer before being transfer to our service. Even the site operators do not have access to the pages you've stored.

View a demo video on our web site.                    

확장 프로그램 기본 정보

이름 Purple Rails stable Purple Rails stable
ID fmgofnjbanbfepmfimmobfhcdjebmjjf
공식 URL https://chrome.google.com/webstore/detail/purple-rails-stable/fmgofnjbanbfepmfimmobfhcdjebmjjf
설명 Encrypted archiving and bookmarking of web pages in the cloud!
파일 크기 432 KB
설치 횟수 10
현재 버전 8.25
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 3.00/5 총 2 개의 평점
개발자 https://www.purplerails.com
결제 유형 free
확장 프로그램 웹 사이트 https://www.purplerails.com/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Purple Rails stable",
    "short_name": "Purple Rails",
    "version": "8.25",
    "manifest_version": 2,
    "description": "Encrypted archiving and bookmarking of web pages in the cloud!",
    "options_page": "options.html",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "extension-icon.png"
        },
        "default_title": "Purple Rails",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "purp"
    },
    "icons": {
        "16": "extension-icon.png"
    },
    "web_accessible_resources": [
        "Bubble.js",
        "Bubble.css",
        "bubble.html",
        "no_preview.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.purplerails.com\/stable\/a\/makepage\/*"
            ],
            "js": [
                "bubblemake.js",
                "bubble_for_makepage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.purplerails.com\/stable\/c\/login"
            ],
            "js": [
                "savekey.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.purplerails.com\/stable\/a\/home"
            ],
            "js": [
                "sjcl.js",
                "csutils.js",
                "pako.js",
                "enc.js",
                "decryptbridge.js",
                "savekey2.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.purplerails.com\/stable\/a\/makepage\/*",
                "https:\/\/www.purplerails.com\/stable\/a\/list",
                "https:\/\/www.purplerails.com\/stable\/a\/list?*",
                "https:\/\/www.purplerails.com\/stable\/a\/search",
                "https:\/\/www.purplerails.com\/stable\/a\/editnote\/*"
            ],
            "js": [
                "sjcl.js",
                "csutils.js",
                "pako.js",
                "enc.js",
                "notes_utils.js",
                "decryptbridge.js",
                "dodecryptbridge.js",
                "bubblemake.js",
                "bubble_for_list.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.purplerails.com\/stable\/a\/list",
                "https:\/\/www.purplerails.com\/stable\/a\/list?*",
                "https:\/\/www.purplerails.com\/stable\/a\/search"
            ],
            "js": [
                "search_ui.js",
                "uri.js",
                "notes_ui.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.purplerails.com\/stable\/a\/change_password"
            ],
            "js": [
                "enc_currpasswd.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "unlimitedStorage",
        "pageCapture",
        "contextMenus",
        "alarms",
        "idle",
        ""
    ]
}