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 |
Eメール | [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 } } |