EASY LGTM
LGTMを手軽に
What is EASY LGTM?
EASY LGTM is a Chrome extension developed by suikatyan, and its main feature is "LGTMを手軽に".
Extension Screenshots
Download EASY LGTM Extension CRX File
Download EASY LGTM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
2022/07/28 ボタンが表示されない問題の暫定修正を入れました。 2022/07/03 現在、ボタンが表示されない現象が発生しています。修正中です。 2021/04/12 ダークモードに対応しました。 2021/03/29 「Files changed」画面でボタンが表示されていなかった不具合を修正しました。 ------------------- LGTMを手軽にするエクステンションです。 Github上にLGTMボタンを設置します。 ボタンを押すと、画像が一覧で表示され、好きな画像を選択するとコメント欄にLGTMリンクが挿入されます。 なお、本エクステンションはキャッシュを使った高速化を図るため、製作者が用意したサーバーを通して画像データを取得します。 本エクステンションを用いて取得したデータなどを悪用することはありません(そもそもデータは収集しておりません)。 Google Analyticsなどのツールを使った追跡も行っておりません。
Extension Basic Information
Name | EASY LGTM |
ID | pbbaemjnonobaiglegdfamlbmngkjdeg |
Official URL | https://chromewebstore.google.com/detail/easy-lgtm/pbbaemjnonobaiglegdfamlbmngkjdeg |
Description | LGTMを手軽に |
File Size | 88.61 KB |
Installation Count | 865 |
Current Version | 2.3 |
Last Updated | 2022-07-29 |
Publish Date | 2019-12-17 |
Rating | 5.00/5 Total 6 Ratings |
Developer | suikatyan |
[email protected] | |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EASY LGTM", "description": "LGTM\u3092\u624b\u8efd\u306b", "version": "2.3", "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "128": "icons\/icon128.png" }, "permissions": [ "http:\/\/suikatyan.sakura.ne.jp\/*" ], "background": { "scripts": [ "js\/lib\/jquery.js", "js\/common\/Utilities.js", "js\/backend\/Storage.js", "js\/backend\/LgtmImage.js", "js\/backend\/ImageService.js", "js\/backend\/Backend.js", "js\/backend\/index.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/jquery.color.js", "js\/lib\/vue.js", "js\/common\/Utilities.js", "js\/frontend\/Templater.js", "js\/frontend\/LgtmImage.js", "js\/frontend\/LgtmButton.js", "js\/frontend\/Frontend.js", "js\/frontend\/index.js" ], "css": [ "css\/main.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "templates\/*" ] } |