Lottie Grabber
Discover and download Lottie files used on a page
什么是Lottie Grabber?
Lottie Grabber是由jawish开发的Chrome扩展程序,该扩展的主要功能是“Discover and download Lottie files used on a page”。
扩展截图
下载Lottie Grabber扩展crx文件
下载Lottie Grabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Discover Lottie animation JSON files used on websites. Extension lights up with the number of detected Lottie JSON files on a page and lists down the animations for downloading, copying and editing.
扩展基本信息
名称 | |
ID | picecooepnneofbeikgdaiebdlcenafn |
官方URL | https://chrome.google.com/webstore/detail/lottie-grabber/picecooepnneofbeikgdaiebdlcenafn |
简介 | Discover and download Lottie files used on a page |
文件大小 | 185 KB |
安装次数 | 3,659 |
当前版本 | 3.0.0 |
更新时间 | 2020-07-16 |
上架时间 | 2020-07-16 |
评分 | 2.50/5 共8次评分 |
开发者 | jawish |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jawish/webextension-lottie-grabber |
帮助页面URL | https://github.com/jawish/webextension-lottie-grabber/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lottie Grabber", "version": "3.0.0", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "Discover and download Lottie files used on a page", "homepage_url": "https:\/\/github.com\/jawish\/webextension-lottie-grabber", "short_name": "Lottie Grabber", "permissions": [ "tabs", "storage", "webRequest", "webNavigation", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "minimum_chrome_version": "49", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "Lottie Grabber", "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": true } } |