Squarespace ID Finder

Find the ids of collections, sections, and blocks on your Squarespace page. Works with both 7.0 and 7.1.

¿Qué es Squarespace ID Finder?

Squarespace ID Finder es una extensión de Chrome desarrollada por https://heathertovey.com, y su función principal es "Find the ids of collections, sections, and blocks on your Squarespace page. Works with both 7.0 and 7.1.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Squarespace ID Finder

Descarga archivos de extensión Squarespace ID Finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Don't waste time searching through the code with dev tools looking for an id.

Click on the icon to see every id from collections, index pages, sections, and blocks on your Squarespace page. Then, you can simply click on the id to copy it and use it in your own code.                    

Información Básica de la Extensión

Nombre Squarespace ID Finder Squarespace ID Finder
ID igjamfnifnkmecjidfbdipieoaeghcff
URL Oficial https://chromewebstore.google.com/detail/squarespace-id-finder/igjamfnifnkmecjidfbdipieoaeghcff
Descripción Find the ids of collections, sections, and blocks on your Squarespace page. Works with both 7.0 and 7.1.
Tamaño del Archivo 9.93 KB
Cantidad de Instalaciones 92,878
Versión Actual 0.0.6
Última Actualización 2022-05-16
Fecha de Publicación 2020-03-02
Calificación 4.94/5 Total de 35 Calificaciones
Desarrollador https://heathertovey.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://heathertovey.com/squarespace-id-finder/
URL de la Página de Ayuda https://heathertovey.com/support/
URL de la Página de Política de Privacidad https://www.heathertovey.com/privacy-policy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Squarespace ID Finder",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Find the ids of collections, sections, and blocks on your Squarespace page. Works with both 7.0 and 7.1.",
    "homepage_url": "https:\/\/heathertovey.com",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Find Squarespace Ids",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ]
}