Extreemit
Everything you ever wanted to add to Steemit
What is Extreemit?
Extreemit is a Chrome extension developed by itchykitten, and its main feature is "Everything you ever wanted to add to Steemit".
Extension Screenshots
Download Extreemit Extension CRX File
Download Extreemit 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
A UI mod for Steemit.com Currently has one feature, which allows you to toggle displaying 'Resteems' on Steemit.com user profiles. More to come! made by @itchykitten for use on steemit.com.
Extension Basic Information
Name | |
ID | fongpbjdmmlocghoebbindiopneahhhk |
Official URL | https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk |
Description | Everything you ever wanted to add to Steemit |
File Size | 53.01 KB |
Installation Count | 28 |
Current Version | 0.0.1 |
Last Updated | 2017-06-28 |
Publish Date | 2017-06-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | itchykitten |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extreemit", "description": "Everything you ever wanted to add to Steemit", "version": "0.0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "steem48.png", "128": "steem128.png" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/steemit.com\/*" ], "css": [ "toggle.css" ], "js": [ "jquery.js", "extreemit.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |