Sagive POPUP Blocker
An attempt to build a better simpler popup blocker
Sagive POPUP Blockerとは何ですか?
Sagive POPUP BlockerはSagive SEOによって開発されたChromeの拡張機能で、その主な機能は「An attempt to build a better simpler popup blocker」です。
拡張機能のスクリーンショット
Sagive POPUP Blocker拡張機能のCRXファイルをダウンロード
Sagive POPUP Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A personal evolving popup blocker which works currently on urls entered to a list. I created this to watch videos online without the popups controlling my browser! a list of current urls i am blocking can be found here: https://goo.gl/2SQxVL
拡張機能の基本情報
名前 | |
ID | gcainaanppgliejbnkbepejpfepkpbbn |
公式URL | https://chrome.google.com/webstore/detail/sagive-popup-blocker/gcainaanppgliejbnkbepejpfepkpbbn |
説明 | An attempt to build a better simpler popup blocker |
ファイルサイズ | 132 KB |
インストール数 | 384 |
現在のバージョン | 0.0.16 |
最終更新日 | 2016-11-18 |
公開日 | 2016-11-18 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | Sagive SEO |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sagive POPUP Blocker", "version": "0.0.16", "options_page": "parts\/options.html", "description": "An attempt to build a better simpler popup blocker", "browser_action": { "default_popup": "parts\/popdown.html" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "storage", "tabs", "activeTab", "windows", "background", "browsingData", "webRequest", "webRequestBlocking", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/styles.css" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": true } } |