Imgurian Tweaks
Adds new features to imgur. You can change the loading gif, add back the upvote/downvote (ratings) bar, much more!
Imgurian Tweaks란 무엇입니까?
Imgurian Tweaks은(는) Vipul Kashyap에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds new features to imgur. You can change the loading gif, add back the upvote/downvote (ratings) bar, much more!"입니다.
확장 프로그램 스크린샷
Imgurian Tweaks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows for customization of the imgur website. Current features include: - Ability to change loading gif - Adding the original ratings bar (upvote/downvote bar) - Imgur notifications - Removing the side gallery - Increasing the size of the main image - Adding a "YOU" tag to comments that you write - Adding a "STAFF" tag to comments that imgur employees write You can also easily stay updated on your gallery submissions. Feel free to request more features! You can contact me on imgur @patatocannon Hope you guys enjoy it.
확장 프로그램 기본 정보
이름 | |
ID | hljlokiakakknbbkpcoaceibkjmffnkp |
공식 URL | https://chrome.google.com/webstore/detail/imgurian-tweaks/hljlokiakakknbbkpcoaceibkjmffnkp |
설명 | Adds new features to imgur. You can change the loading gif, add back the upvote/downvote (ratings) bar, much more! |
파일 크기 | 207 KB |
설치 횟수 | 388 |
현재 버전 | 1.7.0 |
최근 업데이트 | 2016-08-21 |
출시 날짜 | 2016-08-21 |
평점 | 4.62/5 총 21 개의 평점 |
개발자 | Vipul Kashyap |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Imgurian Tweaks", "description": "Adds new features to imgur. You can change the loading gif, add back the upvote\/downvote (ratings) bar, much more!", "version": "1.7.0", "permissions": [ "webRequest", "webRequestBlocking", "storage", "contextMenus", "notifications", "*:\/\/*.imgur.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/imgur.com\/*" ], "js": [ "js\/jquery-2.1.4.min.js", "js\/content.js", "js\/messageloader.js" ], "css": [ "css\/inject.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/jquery-2.1.4.min.js", "js\/background.js" ] }, "icons": { "16": "res\/16x16.png", "48": "res\/icon.png", "128": "res\/icon.png" }, "options_ui": { "page": "options\/options.html", "chrome_style": true, "open_in_tab": true }, "web_accessible_resources": [ "res\/loader.gif", "res\/marquee.png", "res\/fullscreen-enter-8x.png", "res\/fullscreen-exit-8x.png", "release_notes\/index.html" ] } |