Scrapyard

Advanced bookmark manager with page archiving functionality.

Scrapyard란 무엇입니까?

Scrapyard은(는) gchristnsn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Advanced bookmark manager with page archiving functionality."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Scrapyard is a bookmarking extension where you can store and organize bookmarks, page fragments, complete HTML pages and PDF documents, or take notes. It is intended as a modern alternative to the legacy ScrapBook add-on. All archived content is accessible on the Android platform if shared through a cloud service. Scrapyard also supports the import of RDF archives of the legacy ScrapBook. See the online help for a more detailed description of the add-on features: https://tinyurl.com/scrapyard-help .

The add-on has two storage modes:

- Filesystem - in this mode, all archived content is stored inside a user-specified directory in the filesystem. This mode requires the installation of the Scrapyard backend application.
- Browser internal storage - in this mode, all archived content is stored inside the browser profile. Although the installation of the backend application is not required, some advanced features, such as archive toolbar, RDF import, or uploading of local files, are not available without it due to restrictions imposed by the WebExtensions API.

Please see the extension help for more details.

Q&A

Q: If I choose the "Browser internal storage" mode, how can I physically access the archived content?
A: In this case, the archived content is stored in IndexedDB and is managed by the browser. It is not intended for access through the filesystem. Please use Scrapyard import/export facilities to migrate existing bookmarks. If you are into backup, please backup your entire Chrome profile. The path to the current Chrome profile could be found on the chrome://version/ page. Note that in this mode, all archived data is removed when the add-on is uninstalled.

Q: I've lost all my data. What can I do?
A: Generally, nothing could be done about this. There may be bugs in Scrapyard, cloud file version conflicts, OS crashes, hardware failures, your antivirus may mess with IndexedDB, a cat may eat it. Please back up your data regularly, possibly using third-party software for automation.

Q: Suddenly, a half of my data went missing. It seems, that items have disappeared randomly. Is there any hope?
A: These are signs that the index file of the filesystem storage was corrupted by a faulty disk operation. Although the probability of this is pretty low, there are no technical means to prevent this from happening. This may happen when the browser crashes or exits at an inappropriate moment. Luckily, the storage index could be completely restored with the "Rebuild item index" link at the "Advanced" settings tab.

Q: My browser says: "The native application on port 20202 is not available" what does this mean?
This means that the port used by the native application web server is taken by some other application or an already running instance of the native application from an another browser. This may happen if the browser has crashed. There are several possible solutions of this issue. At first, try to reboot the computer. If this does not help, it is possible to change the native application port in the Scrapyard settings.                    

확장 프로그램 기본 정보

이름 Scrapyard Scrapyard
ID jlpgjeiblkojkaedoobnfkgobdddimon
공식 URL https://chromewebstore.google.com/detail/scrapyard/jlpgjeiblkojkaedoobnfkgobdddimon
설명 Advanced bookmark manager with page archiving functionality.
파일 크기 1.46 MB
설치 횟수 125
현재 버전 2.2
최근 업데이트 2024-02-20
출시 날짜 2022-08-09
평점 5.00/5 총 5 개의 평점
개발자 gchristnsn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gchristensen.github.io/scrapyard/
도움말 페이지 URL https://github.com/GChristensen/scrapyard/issues
개인정보 보호 정책 페이지 URL https://gchristensen.github.io/docs/chrome-privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.2",
    "manifest_version": 3,
    "name": "Scrapyard",
    "description": "Advanced bookmark manager with page archiving functionality.",
    "homepage_url": "https:\/\/gchristensen.github.io\/scrapyard",
    "default_locale": "en",
    "icons": {
        "16": "icons\/logo16.png",
        "24": "icons\/logo24.png",
        "32": "icons\/logo32.png",
        "96": "icons\/logo96.png",
        "128": "icons\/logo128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "alarms",
        "bookmarks",
        "downloads",
        "nativeMessaging",
        "notifications",
        "storage",
        "unlimitedStorage",
        "webNavigation",
        "management",
        "scripting",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "net_rules.json"
            }
        ]
    },
    "commands": {
        "toggle_sidebar_window": {
            "suggested_key": {
                "default": "Alt+Y"
            },
            "description": "Open Scrapyard in sidebar"
        },
        "bookmark_to_default_shelf": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Bookmark the current tab to the default shelf"
        },
        "archive_to_default_shelf": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Archive the current tab to the default shelf"
        }
    },
    "background": {
        "service_worker": "background_worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icons\/logo16.png",
            "24": "icons\/logo24.png",
            "32": "icons\/logo32.png",
            "96": "icons\/logo96.png",
            "128": "icons\/logo128.png"
        },
        "default_title": "Scrapyard",
        "default_popup": "ui\/popup.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "ui\/options.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/lock.svg",
                "ui\/site_capture.html",
                "reference.html",
                "ui\/notes_iframe.html",
                "ui\/notes.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "omnibox": {
        "keyword": "scr"
    }
}