Scrapyard

Advanced bookmark manager with page archiving functionality.

O que é Scrapyard?

Scrapyard é uma extensão do Chrome desenvolvida por gchristnsn, e sua principal característica é "Advanced bookmark manager with page archiving functionality.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Scrapyard

Baixe arquivos de extensão Scrapyard no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Scrapyard Scrapyard
ID jlpgjeiblkojkaedoobnfkgobdddimon
URL Oficial https://chromewebstore.google.com/detail/scrapyard/jlpgjeiblkojkaedoobnfkgobdddimon
Descrição Advanced bookmark manager with page archiving functionality.
Tamanho do Arquivo 1.46 MB
Contagem de Instalações 125
Versão Atual 2.2
Última Atualização 2024-02-20
Data de Publicação 2022-08-09
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor gchristnsn
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://gchristensen.github.io/scrapyard/
URL da Página de Ajuda https://github.com/GChristensen/scrapyard/issues
URL da Página de Política de Privacidade https://gchristensen.github.io/docs/chrome-privacy-policy.html
Idiomas Suportados 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"
    }
}