Bookmark Tweet to Browser
Bookmark tweet to browser bookmark directly from timeline using embedded button.
Cos'è Bookmark Tweet to Browser?
Bookmark Tweet to Browser è un'estensione di Chrome sviluppata da redhoyasa, e la sua funzione principale è "Bookmark tweet to browser bookmark directly from timeline using embedded button.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bookmark Tweet to Browser
Scarica i file di estensione Bookmark Tweet to Browser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Twitter has bookmark feature, but we cannot organize the bookmarked tweets. Alternatively, we could bookmark tweet to the browser bookmark directly and organize it, but we need to open the individual tweet into new tab before bookmarking the tweet. This extension provides shortcut to bookmark tweet directly from timeline using embedded button in tweet. Feature: - Add tweet to browser bookmark (will be added to Other Bookmarks folder in Chrome) - Remove bookmarked tweet from browser bookmark
Informazioni di Base sull'Estensione
Nome | |
ID | fcohgfilngajddgokkckbpfkpmojoejf |
URL Ufficiale | https://chromewebstore.google.com/detail/bookmark-tweet-to-browser/fcohgfilngajddgokkckbpfkpmojoejf |
Descrizione | Bookmark tweet to browser bookmark directly from timeline using embedded button. |
Dimensione del File | 42.12 KB |
Conteggio Installazioni | 75 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2019-10-31 |
Data di Pubblicazione | 2019-10-31 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | redhoyasa |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Tweet to Browser", "version": "0.1.0", "short_name": "Bookmark Tweet to Browser", "description": "Bookmark tweet to browser bookmark directly from timeline using embedded button.", "permissions": [ "activeTab", "declarativeContent", "storage", "bookmarks" ], "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*.twitter.com\/*" ], "css": [ "dist\/css\/styles.css" ], "js": [ "dist\/content.js" ] } ], "icons": { "16": "app\/images\/icon16.png", "48": "app\/images\/icon48.png", "128": "app\/images\/icon128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |