Flagwall
Flag links to paywall sites
Flagwallとは何ですか?
FlagwallはAndrew Ivinsによって開発されたChromeの拡張機能で、その主な機能は「Flag links to paywall sites」です。
拡張機能のスクリーンショット
Flagwall拡張機能のCRXファイルをダウンロード
Flagwall拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Flagwall will scan each page for text hyperlinks to known domains that operate a paywall. It will flag each of these links with a dotted red underline so that you know before you click on it that it's likely to hit you with a paywall. Flagwall does not attempt to block or subvert paywalls in any way. It merely exists to give the user an option of avoiding the typical bait and switch of following a link, only to be faced with a paywall.
拡張機能の基本情報
名前 | Flagwall |
ID | gmlnfmmccieblogoplaacjohenlnbkae |
公式URL | https://chromewebstore.google.com/detail/flagwall/gmlnfmmccieblogoplaacjohenlnbkae |
説明 | Flag links to paywall sites |
ファイルサイズ | 16.77 KB |
インストール数 | 27 |
現在のバージョン | 1.0 |
最終更新日 | 2019-10-03 |
公開日 | 2019-10-02 |
開発者 | Andrew Ivins |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flagwall", "version": "1.0", "description": "Flag links to paywall sites", "permissions": [ "activeTab", "storage" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_tite": "Flagwall", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/" ], "run_at": "document_idle", "all_frames": true, "js": [ "flaglinks.js" ] } ], "manifest_version": 2 } |