Extreemit

Everything you ever wanted to add to Steemit

Extreemit क्या है?

Extreemit itchykitten द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Everything you ever wanted to add to Steemit"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Extreemit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Extreemit Extreemit
ID fongpbjdmmlocghoebbindiopneahhhk
आधिकारिक URL https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk
विवरण Everything you ever wanted to add to Steemit
फ़ाइल का आकार 53.01 KB
स्थापना संख्या 28
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2017-06-28
प्रकाशन तिथि 2017-06-28
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर itchykitten
भुगतान के प्रकार free
समर्थित भाषाएँ 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
    }
}