Scrapyard

Advanced bookmark manager with page archiving functionality.

Was ist Scrapyard?

Scrapyard ist eine Chrome-Erweiterung, die von gchristnsn entwickelt wurde, und ihr Hauptmerkmal ist "Advanced bookmark manager with page archiving functionality.".

Erweiterungsscreenshots

screenshot
screenshot

Scrapyard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scrapyard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Scrapyard Scrapyard
ID jlpgjeiblkojkaedoobnfkgobdddimon
Offizielle URL https://chromewebstore.google.com/detail/scrapyard/jlpgjeiblkojkaedoobnfkgobdddimon
Beschreibung Advanced bookmark manager with page archiving functionality.
Dateigröße 1.46 MB
Installationsanzahl 125
Aktuelle Version 2.2
Letztes Update 2024-02-20
Veröffentlichungsdatum 2022-08-09
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler gchristnsn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gchristensen.github.io/scrapyard/
Hilfeseite URL https://github.com/GChristensen/scrapyard/issues
URL der Datenschutzrichtlinien-Seite https://gchristensen.github.io/docs/chrome-privacy-policy.html
Unterstützte Sprachen 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"
    }
}