Bookmark Tweet to Browser
Bookmark tweet to browser bookmark directly from timeline using embedded button.
Bookmark Tweet to Browserとは何ですか?
Bookmark Tweet to Browserはredhoyasaによって開発されたChromeの拡張機能で、その主な機能は「Bookmark tweet to browser bookmark directly from timeline using embedded button.」です。
拡張機能のスクリーンショット
Bookmark Tweet to Browser拡張機能のCRXファイルをダウンロード
Bookmark Tweet to Browser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
ID | fcohgfilngajddgokkckbpfkpmojoejf |
公式URL | https://chromewebstore.google.com/detail/bookmark-tweet-to-browser/fcohgfilngajddgokkckbpfkpmojoejf |
説明 | Bookmark tweet to browser bookmark directly from timeline using embedded button. |
ファイルサイズ | 42.12 KB |
インストール数 | 75 |
現在のバージョン | 0.1.0 |
最終更新日 | 2019-10-31 |
公開日 | 2019-10-31 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | redhoyasa |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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'" } |