Squirtle

Record and playback actionable items on web pages

Wat is Squirtle?

Squirtle is een Chrome-extensie ontwikkeld door kaikai526, en de belangrijkste functie is "Record and playback actionable items on web pages".

Download het CRX-bestand van de extensie Squirtle

Download Squirtle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Save the state of a webpage in a url that can be saved or shared                    

Basisinformatie over de Extensie

Naam Squirtle Squirtle
ID ikfmiieigckolmjfhjbdpfjhdmgdfmjo
Officiële URL https://chrome.google.com/webstore/detail/squirtle/ikfmiieigckolmjfhjbdpfjhdmgdfmjo
Beschrijving Record and playback actionable items on web pages
Bestandsgrootte 71.38 KB
Aantal Installaties 19
Huidige Versie 1.0
Laatst Bijgewerkt 2014-09-28
Publicatiedatum 2014-09-28
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar kaikai526
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Squirtle",
    "description": "Record and playback actionable items on web pages",
    "version": "1.0",
    "browser_action": {
        "default_icon": "img\/icon2.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/State.js",
            "js\/listeners.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/playback.js",
                "js\/State.js",
                "js\/API.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/record_dialog.js",
        "js\/playback.js",
        "js\/save-state.js",
        "js\/State.js",
        "js\/API.js"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}