Lottie Grabber
Discover and download Lottie files used on a page
Vad är Lottie Grabber?
Lottie Grabber är en Chrome-tillägg utvecklad av jawish, och dess huvudfunktion är "Discover and download Lottie files used on a page".
Tilläggsskärmbilder
Ladda ner Lottie Grabber-förlängningens CRX-fil
Ladda ner Lottie Grabber-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | picecooepnneofbeikgdaiebdlcenafn |
Officiell webbadress | https://chrome.google.com/webstore/detail/lottie-grabber/picecooepnneofbeikgdaiebdlcenafn |
Beskrivning | Discover and download Lottie files used on a page |
Filstorlek | 185 KB |
Antal Installationer | 3,659 |
Aktuell Version | 3.0.0 |
Senast Uppdaterad | 2020-07-16 |
Publiceringsdatum | 2020-07-16 |
Betyg | 2.50/5 Totalt 8 Betyg |
Utvecklare | jawish |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jawish/webextension-lottie-grabber |
Hjälpsida URL | https://github.com/jawish/webextension-lottie-grabber/issues |
Stödda Språk | 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 } } |