CoverageBook Clipper

Collect links and fix coverage screenshots

O que é CoverageBook Clipper?

CoverageBook Clipper é uma extensão do Chrome desenvolvida por coveragebook.com, e sua principal característica é "Collect links and fix coverage screenshots".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão CoverageBook Clipper

Baixe arquivos de extensão CoverageBook Clipper 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

                        Fix coverage screenshots and bookmark coverage links with 'CoverageBook Clipper'. The handy little browser extension tool for CoverageBook.

Fix CoverageBook screenshots:
At CoverageBook we’re always working to improve screenshot quality. But with the best will in the world, there will be times when annoying little pop-up messages, cookie notices and the like get in the way of your lovely coverage. With 'Clipper' you can fix them in no time.

Here's how:
1. Once installed, from within CoverageBook, simply click the 'Fix Screenshot' button for any offending articles.
2. You’ll be taken to the webpage in question.
3. Close any unwanted messages or things that are in the way.
4. Click the 'Take Screenshot' button.
5. It’ll capture it at the exact CoverageBook dimensions and slot seamlessly into your book.



Bookmark coverage links:
Clipper isn’t just for fixing screenshots. When you come across articles featuring your coverage, you can bookmark them in an instant and create a handy little list of coverage links. 

Avoid the faff of copying and pasting the link from the address bar into your coverage report over and over again. Those precious seconds add up and you’ve got better things to do in the busy world of public relations.

The CoverageBook Clipper extension will help you create your coverage reports quicker. 

Here’s how in 6 easy steps:
1. You find a new piece of coverage.
2. Click the CoverageBook icon in your Chrome toolbar
3. Click ‘Bookmark this page’
4. Find another piece of coverage? Great, click ‘Bookmark this page’ again
5. Keep an eye on how much coverage you’ve collected with the icon counter
6. Click ‘Copy All Bookmarks’, then you can paste into either a new or existing coverage report.

That’s it. Discovery to coverage report in seconds.                    

Informações Básicas da Extensão

Nome CoverageBook Clipper CoverageBook Clipper
ID ofnneagclopknppofagjbmkabmdicmol
URL Oficial https://chromewebstore.google.com/detail/coveragebook-clipper/ofnneagclopknppofagjbmkabmdicmol
Descrição Collect links and fix coverage screenshots
Tamanho do Arquivo 559 KB
Contagem de Instalações 3,531
Versão Atual 2.0.9
Última Atualização 2022-04-04
Data de Publicação 2019-10-01
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor coveragebook.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://coveragebook.com
URL da Página de Ajuda http://help.coveragebook.com/creating-your-report/how-do-i-capture-an-image-from-the-coveragebook-chrome-extension
URL da Página de Política de Privacidade https://coveragebook.com/privacy
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CoverageBook Clipper",
    "version": "2.0.9",
    "manifest_version": 2,
    "description": "Collect links and fix coverage screenshots",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "persistent": true,
        "scripts": [
            "\/background\/snapper\/tabs.js",
            "\/background\/snapper\/actions.js",
            "\/background\/snapper\/capture.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.coveragebook.com\/*",
                "https:\/\/*.ngrok.io\/*",
                "http:\/\/*.ngrok.io\/*",
                "https:\/\/*.herokuapp.com\/*",
                "https:\/\/app.coveragebook.dev\/*"
            ],
            "js": [
                "\/content\/coveragebook.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "\/images\/toolbar-logo.png",
            "38": "\/images\/toolbar-logo.png"
        },
        "default_popup": "\/content\/clipper\/index.html",
        "default_title": "Save URLs to add to your CoverageBook report"
    },
    "web_accessible_resources": [
        "\/content\/coveragebook.js",
        "\/content\/styles.css",
        "\/content\/snapper\/capture.js",
        "\/content\/snapper\/content.css",
        "\/content\/snapper\/content.js",
        "\/content\/snapper\/elements.js",
        "\/content\/snapper\/popup.html",
        "\/content\/snapper\/popup.js",
        "\/content\/snapper\/snapper.html",
        "\/content\/snapper\/snapper.js",
        "\/content\/clipper\/clipper.js",
        "\/content\/clipper\/index.html",
        "\/content\/clipper\/storage.js",
        "\/images\/logo-color.svg",
        "\/images\/logo-white.svg",
        "\/images\/logo-wordmark-color.svg",
        "\/images\/logo-wordmark-white.svg",
        "\/images\/toolbar-logo.png"
    ]
}