Reheadline
Helps you write more informative news headlines as you read articles to help your friends and to see the headlines that they write.
O que é Reheadline?
Reheadline é uma extensão do Chrome desenvolvida por Farnaz Jahanbakhsh, e sua principal característica é "Helps you write more informative news headlines as you read articles to help your friends and to see the headlines that they write.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reheadline
Baixe arquivos de extensão Reheadline no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This is a browser extension as part of a research project that helps you write better, more informative news headlines as you read news articles. Your posted headlines can help other users who are running the extension obtain a more accurate picture of the news story and enables you to see the headlines that the others write wherever you encounter those articles, even in your Facebook or Twitter feed.
Informações Básicas da Extensão
Nome | |
ID | iignpdlabbnnacdkchpnpljkhdlkblbh |
URL Oficial | https://chromewebstore.google.com/detail/reheadline/iignpdlabbnnacdkchpnpljkhdlkblbh |
Descrição | Helps you write more informative news headlines as you read articles to help your friends and to see the headlines that they write. |
Tamanho do Arquivo | 3.56 MB |
Contagem de Instalações | 11 |
Versão Atual | 0.1.21 |
Última Atualização | 2022-12-20 |
Data de Publicação | 2022-09-26 |
Classificação | 3.67/5 Total de 3 Avaliações |
Desenvolvedor | Farnaz Jahanbakhsh |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://reheadline.csail.mit.edu/about |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.21", "name": "Reheadline", "homepage_url": "https:\/\/github.com\/farnazj\/Replace-Previews", "description": "Helps you write more informative news headlines as you read articles to help your friends and to see the headlines that they write.", "default_locale": "en", "permissions": [], "icons": { "16": "icons\/16_.png", "48": "icons\/48_.png", "128": "icons\/128_.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_globs": [ "http:\/\/trustnet.csail.mit.edu\/*", "https:\/\/trustnet.csail.mit.edu\/*", "http:\/\/reheadline.csail.mit.edu\/*", "https:\/\/reheadline.csail.mit.edu\/*" ], "js": [ "js\/content-script.js" ], "css": [ "css\/main.css" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "Reheadline", "default_icon": { "19": "icons\/16_.png", "38": "icons\/38_.png" } }, "options_ui": { "page": "options.html", "browser_style": true }, "web_accessible_resources": [ "icons\/38_.png" ], "content_security_policy": "script-src 'self' ; object-src 'self'" } |