Squirtle
Record and playback actionable items on web pages
Cos'è Squirtle?
Squirtle è un'estensione di Chrome sviluppata da kaikai526, e la sua funzione principale è "Record and playback actionable items on web pages".
Scarica il file CRX dell'estensione Squirtle
Scarica i file di estensione Squirtle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Save the state of a webpage in a url that can be saved or shared Informazioni di Base sull'Estensione
| Nome | |
| ID | ikfmiieigckolmjfhjbdpfjhdmgdfmjo |
| URL Ufficiale | https://chrome.google.com/webstore/detail/squirtle/ikfmiieigckolmjfhjbdpfjhdmgdfmjo |
| Descrizione | Record and playback actionable items on web pages |
| Dimensione del File | 71.38 KB |
| Conteggio Installazioni | 19 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2014-09-28 |
| Data di Pubblicazione | 2014-09-28 |
| Valutazione | 1.00/5 Totale 1 Valutazioni |
| Sviluppatore | kaikai526 |
| Tipo di Pagamento | free |
| Lingue Supportate | 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:\/\/*\/*"
]
} | |