Scrapyard

Advanced bookmark manager with page archiving functionality.

Qu'est-ce que Scrapyard ?

Scrapyard est une extension Chrome développée par gchristnsn, et sa fonction principale est "Advanced bookmark manager with page archiving functionality.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Scrapyard

Téléchargez les fichiers d'extension Scrapyard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Scrapyard Scrapyard
ID jlpgjeiblkojkaedoobnfkgobdddimon
URL Officiel https://chromewebstore.google.com/detail/scrapyard/jlpgjeiblkojkaedoobnfkgobdddimon
Description Advanced bookmark manager with page archiving functionality.
Taille du Fichier 1.46 MB
Nombre d'Installations 125
Version Actuelle 2.2
Dernière Mise à Jour 2024-02-20
Date de Publication 2022-08-09
Évaluation 5.00/5 Total 5 Évaluations
Développeur gchristnsn
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://gchristensen.github.io/scrapyard/
URL de la Page d'Aide https://github.com/GChristensen/scrapyard/issues
URL de la Page de Politique de Confidentialité https://gchristensen.github.io/docs/chrome-privacy-policy.html
Langues Prises en Charge 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"
    }
}