Medium Banner Remover
A simple addon to remove medium article banners that clutter the screen
Medium Banner Remover क्या है?
Medium Banner Remover Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple addon to remove medium article banners that clutter the screen"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Medium Banner Remover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple browser addon to remove some annoying banners from medium articles
code here: https://github.com/colinlcrawford/medium-banner-remover-browser-extn एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | bophhfkkhlfjikhlpbjkiiknaepnkkcc |
| आधिकारिक URL | https://chromewebstore.google.com/detail/medium-banner-remover/bophhfkkhlfjikhlpbjkiiknaepnkkcc |
| विवरण | A simple addon to remove medium article banners that clutter the screen |
| फ़ाइल का आकार | 12.24 KB |
| स्थापना संख्या | 44 |
| वर्तमान संस्करण | 0.0.5 |
| अंतिम अपडेट | 2019-10-20 |
| प्रकाशन तिथि | 2019-10-19 |
| रेटिंग | 4.00/5 कुल 2 रेटिंग्स |
| डेवलपर | Unknown |
| भुगतान के प्रकार | free |
| समर्थित भाषाएँ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Medium Banner Remover",
"version": "0.0.5",
"description": "A simple addon to remove medium article banners that clutter the screen",
"homepage_url": "https:\/\/github.com\/colinlcrawford\/medium-banner-remover-browser-extn",
"author": "Colin Crawford",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"permissions": [
"activeTab",
"storage",
"*:\/\/*\/*"
],
"browser_action": {
"default_icon": "icons\/icon-128.png",
"default_title": "Medium Banner Remover!"
},
"options_ui": {
"page": "options\/options.html",
"browser_style": true,
"chrome_style": true
},
"background": {
"scripts": [
"background\/background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "{a77fcc50-8ec5-4c21-9232-45eaa3be464c}"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-scripts\/content-script.js"
]
}
]
} | |