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 |
官方網址 | 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 } } |