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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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
} | |