Scrapyard

Advanced bookmark manager with page archiving functionality.

Scrapyardとは何ですか?

Scrapyardはgchristnsnによって開発されたChromeの拡張機能で、その主な機能は「Advanced bookmark manager with page archiving functionality.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Scrapyard拡張機能のCRXファイルをダウンロード

Scrapyard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}