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.
拡張機能の基本情報
名前 | reddit-adblock |
ID | mhgkomjopimfbhhiigdkielolbniipdp |
公式URL | 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 |
Eメール | [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" ] } ] } |