Squarespace ID Finder

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

Vad är Squarespace ID Finder?

Squarespace ID Finder är en Chrome-tillägg utvecklad av https://heathertovey.com, och dess huvudfunktion är "Find the ids of collections, sections, and blocks on your Squarespace page. Works with both 7.0 and 7.1.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Squarespace ID Finder-förlängningens CRX-fil

Ladda ner Squarespace ID Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Squarespace ID Finder Squarespace ID Finder
ID igjamfnifnkmecjidfbdipieoaeghcff
Officiell webbadress https://chromewebstore.google.com/detail/squarespace-id-finder/igjamfnifnkmecjidfbdipieoaeghcff
Beskrivning Find the ids of collections, sections, and blocks on your Squarespace page. Works with both 7.0 and 7.1.
Filstorlek 9.93 KB
Antal Installationer 92,878
Aktuell Version 0.0.6
Senast Uppdaterad 2022-05-16
Publiceringsdatum 2020-03-02
Betyg 4.94/5 Totalt 35 Betyg
Utvecklare https://heathertovey.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://heathertovey.com/squarespace-id-finder/
Hjälpsida URL https://heathertovey.com/support/
URL till Sekretesspolicy Sidan https://www.heathertovey.com/privacy-policy
Stödda Språk 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"
    ]
}