reddit-adblock
An extenstion that blocks ads on reddit!
什麼是reddit-adblock?
reddit-adblock是由Venkat Naidu開發的Chrome擴展程式,該擴展的主要功能是“An extenstion that blocks ads on reddit!”。
擴展截圖
下載reddit-adblock擴展crx文件
下載reddit-adblock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Just hides all the promotions you see while scrolling reddit.
It just hides them. That's all. 擴展基本資訊
| 名稱 | |
| ID | mhgkomjopimfbhhiigdkielolbniipdp |
| 官方網址 | https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp |
| 簡介 | An extenstion that blocks ads on reddit! |
| 檔案大小 | 1.04 MB |
| 安裝次數 | 47 |
| 目前版本 | 1.0 |
| 更新時間 | 2022-05-24 |
| 上架時間 | 2022-05-23 |
| 開發者 | Venkat Naidu |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "reddit-adblock",
"description": "An extenstion that blocks ads on reddit!",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/get_started16.png",
"32": "\/images\/get_started32.png",
"48": "\/images\/get_started48.png",
"128": "\/images\/get_started128.png"
}
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/*.reddit.com\/*"
],
"js": [
"content-script.js"
]
}
]
} | |