9GAG Lite
Change 9gag as you want to work like it should
9GAG Liteとは何ですか?
9GAG Liteはgeiszlaによって開発されたChromeの拡張機能で、その主な機能は「Change 9gag as you want to work like it should」です。
拡張機能のスクリーンショット
9GAG Lite拡張機能のCRXファイルをダウンロード
9GAG Lite拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
New features
- Zoom into profile pictures when user hovers over them
- Download images/GIFs/videos
- Show length of videos and GIFs
- Prevent autoplaying GIFs/videos
All features can be turned on and off with a simple switch when clicking on the extension icon.
Features:
- Choose between light and dark theme
- Hide ads
- Simplify website layout, remove clutter
- Limit posts on hot and trending page by number of points
- Choose which type of posts to see (images/GIFs/videos)
- Download images/GIFs/videos
- Show length of videos and GIFs
- Prevent autoplaying GIFs/videos
- Zoom into profile pictures when user hovers over them
Planned features:
- Prevent post preload to save data
- Show OP's name if she/he commented on the post
- Copy link button under posts
- Bigger posts
- Normalize post order
- Don't show already seen posts
- Prevent loading hot posts in trending (by point limit)
- Multiple page layout options (e.g. hide only social links, hide only sidebar, etc.)
- Favorites
- Censor emojis ;)
More ideas are welcome. 拡張機能の基本情報
| 名前 | |
| ID | namifldkgnlkiocmnhhpbppcoimcpobm |
| 公式URL | https://chromewebstore.google.com/detail/9gag-lite/namifldkgnlkiocmnhhpbppcoimcpobm |
| 説明 | Change 9gag as you want to work like it should |
| ファイルサイズ | 26.04 KB |
| インストール数 | 35 |
| 現在のバージョン | 1.1.3 |
| 最終更新日 | 2019-01-10 |
| 公開日 | 2019-01-10 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | geiszla |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/geiszla/9gag-lite |
| ヘルプページのURL | https://github.com/geiszla/9gag-lite/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "9GAG Lite",
"version": "1.1.3",
"description": "Change 9gag as you want to work like it should",
"minimum_chrome_version": "53",
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"downloads"
],
"options_page": "options\/options.html",
"browser_action": {
"default_title": "9Gag Lite Options",
"default_popup": "options\/options_popup.html"
},
"background": {
"scripts": [
"global.js",
"scripts\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"global.js",
"scripts\/setup.js"
],
"run_at": "document_start",
"matches": [
"*:\/\/*.9gag.com\/*"
]
},
{
"js": [
"scripts\/content.js"
],
"run_at": "document_end",
"matches": [
"*:\/\/*.9gag.com\/*"
]
},
{
"js": [
"scripts\/fixup.js"
],
"matches": [
"*:\/\/*.9gag.com\/*"
]
}
],
"web_accessible_resources": [
"styles\/*"
]
} | |