Not Now Youtube
This extension will one-click to hide your youtube recommendations so that you can concentrate on your work.
Not Now Youtubeとは何ですか?
Not Now Youtubeはoasiswengによって開発されたChromeの拡張機能で、その主な機能は「This extension will one-click to hide your youtube recommendations so that you can concentrate on your work.」です。
拡張機能のスクリーンショット
Not Now Youtube拡張機能のCRXファイルをダウンロード
Not Now Youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Are you tired of clicking into endless recommended videos when you are working? Are you tired of wasting your time in youtube when you can do gym, cook, hang out with your friends and all the rest of the wonderful things in the world? MERRY CHRISTMAS! Here goes the must-have extension for your needs! Recommendation in Youtube is F**king annoying. It makes you procrastinating, it makes you forget what you are supposed to search for. It makes you ignore your girlfriend, it makes you forget your friends. Most viciously, it robs your bedtime. It makes your deadlines overdue. Now, it is time for Youtube Recommendations to LEAVE us ALONE! Cherish your life, stay away from Youtube Recommendations.
拡張機能の基本情報
名前 | |
ID | mhccheobkmjgkipfgmialdnhfloflnne |
公式URL | https://chrome.google.com/webstore/detail/not-now-youtube/mhccheobkmjgkipfgmialdnhfloflnne |
説明 | This extension will one-click to hide your youtube recommendations so that you can concentrate on your work. |
ファイルサイズ | 72.35 KB |
インストール数 | 341 |
現在のバージョン | 1.2 |
最終更新日 | 2014-12-05 |
公開日 | 2014-12-05 |
評価 | 3.94/5 合計 17 レビュー |
開発者 | oasisweng |
支払い方法 | free |
対応言語 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "1.2", "default_locale": "en", "description": "__MSG_extDesc__", "permissions": [ "tabs", "activeTab", "storage", "*:\/\/*.youtube.com\/*", "webNavigation" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "19.png", "38": "38.png" }, "default_title": "distraction is removed!" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "css": [ "hidden-recommendation.css" ], "js": [ "jquery.js", "contentscript.js" ], "run_at": "document_start" } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" } } |