Squirtle
Record and playback actionable items on web pages
What is Squirtle?
Squirtle is a Chrome extension developed by kaikai526, and its main feature is "Record and playback actionable items on web pages".
Download Squirtle Extension CRX File
Download Squirtle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Save the state of a webpage in a url that can be saved or shared
Extension Basic Information
Name | ![]() |
ID | ikfmiieigckolmjfhjbdpfjhdmgdfmjo |
Official URL | https://chrome.google.com/webstore/detail/squirtle/ikfmiieigckolmjfhjbdpfjhdmgdfmjo |
Description | Record and playback actionable items on web pages |
File Size | 71.38 KB |
Installation Count | 19 |
Current Version | 1.0 |
Last Updated | 2014-09-28 |
Publish Date | 2014-09-28 |
Rating | 1.00/5 Total 1 Ratings |
Developer | kaikai526 |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } |