Squirtle
Record and playback actionable items on web pages
什么是Squirtle?
Squirtle是由kaikai526开发的Chrome扩展程序,该扩展的主要功能是“Record and playback actionable items on web pages”。
下载Squirtle扩展crx文件
下载Squirtle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Save the state of a webpage in a url that can be saved or shared
扩展基本信息
名称 | ![]() |
ID | ikfmiieigckolmjfhjbdpfjhdmgdfmjo |
官方URL | https://chrome.google.com/webstore/detail/squirtle/ikfmiieigckolmjfhjbdpfjhdmgdfmjo |
简介 | Record and playback actionable items on web pages |
文件大小 | 71.38 KB |
安装次数 | 19 |
当前版本 | 1.0 |
更新时间 | 2014-09-28 |
上架时间 | 2014-09-28 |
评分 | 1.00/5 共1次评分 |
开发者 | kaikai526 |
付费类型 | free |
支持的语言 | 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:\/\/*\/*" ] } |