搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

话题已关闭并存档。 如果需要帮助请提出新问题。

Who put "view pocket list" on my bookmarks and how do I dump it??

  • 15 个回答
  • 32 人有此问题
  • 8 次查看
  • 最后回复者为 the-edmeister

more options

What's this stupid "view pocket list" thing doing in my bookmarks? I right click on it and there's no way to delete it. I HATE stuff invading my browser like that, how do I nuke it?

What's this stupid "view pocket list" thing doing in my bookmarks? I right click on it and there's no way to delete it. I HATE stuff invading my browser like that, how do I nuke it?

被采纳的解决方案

Available as a UserStyle for Stylish users. https://userstyles.org/styles/114712/pocket-feature-hide-menu-items-fx38-0-5-up

Thank you, cor-el

定位到答案原位置 👍 3

所有回复 (15)

more options

That menu item is part of the new Pocket feature in Firefox 38.0.5.

See if disabling the new Pocket feature makes that "view pocket list" bookmarks menu item go away.

Type about:config in the Location Bar and hit Enter. Accept the warning message. Put this pref in the Search field to filter those advanced preferences

browser.pocket.enabled - the default value is true. To turn this feature off - either right-click that pref and select Toggle or double-click that pref to change the value to False.

more options

Nah, the thing is still there. I guess knowing it was Firefox makes it slightly more tolerable, but I hate it when more junk is on my screen. Features like that should be add-ons or something, the browser should be ultra clean, and ANY icon like that should be disposable.

more options

Did you restart Firefox after toggling that preference?

Sorry, that I neglected to mention that the restart might be needed. Many of the preferences added in recent versions don't need a restart to "take set", but this one does - per a thread I just saw posted a few pages back in the forum.

more options

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#menu_pocket, #menu_pocketSeparator, #panelMenu_pocket, #BMB_pocket, #BMB_pocketSeparator { display:none !important; }
#context-savelinktopocket, #context-pocket { display:none!important; }

EDIT: added separator IDs


The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the currently used Firefox profile folder:

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

由cor-el于修改

more options

Appreciated, a bit too much to get rid of a annoying little red thing, but thanks.

more options

It is basically a few steps that involve creating a userChrome.css file and paste the above posted content in this file.

You can use this button to go to the currently used Firefox profile folder:

  1. create a chrome folder
  2. create a new file userChrome.css in this folder.
  3. paste this text in the file:
#menu_pocket, #menu_pocketSeparator, #panelMenu_pocket, #BMB_pocket, #BMB_pocketSeparator { display:none !important; }
#context-savelinktopocket, #context-pocket { display:none!important; }

Save the file (Save As) and make sure that "All files" is selected because saving as a "Text file" will append a hidden .txt file extension will prevent the file from working.

more options

选择的解决方案

Available as a UserStyle for Stylish users. https://userstyles.org/styles/114712/pocket-feature-hide-menu-items-fx38-0-5-up

Thank you, cor-el

more options

Wow. It seems like a small thing, and it is, but not only was someone else annoyed by having a feature like that forced on us, they actually wrote a program to do something about it. Admiral, edmeister.

由zorro6204于修改

more options

You can right-click the Pocket button and click "Remove From Toolbar" or "Remove From Menu" to disable Pocket and move the Pocket button to the Customize palette. That will also remove the Pocket entries in the Bookmarks menu. This only works if browser.pocket.enabled = true So you need to undo this change and toggle the pref to true with a double-click on the browser.pocket.enabled pref line.

由cor-el于修改

more options

zorro6204 said

Wow. It seems like a small thing, and it is, but not only was someone else annoyed by having a feature like that forced on us, they actually wrote a program to do something about it. Admiral, edmeister.

Your welcome, but please give credit to cor-el for coming up with the code. I'm am not proficient with CSS, I know just enough about it to use it and share it with others. Basically,I just posted that code in a venue that makes it easier for less experienced users to install that code.

more options

Ah. Well, bully for both of you!

more options

zorro6204 said

What's this stupid "view pocket list" thing doing in my bookmarks? I right click on it and there's no way to delete it. I HATE stuff invading my browser like that, how do I nuke it?

Simple solution - http://help.getpocket.com/customer/portal/articles/1999137-how-to-disable-pocket-for-firefox

more options

You can right-click the Pocket button and click "Remove from Toolbar" or "Remove from Menu" to disable Pocket and move the Pocket button to the Customize palette. That will also remove the Pocket entries in the Bookmarks menu. This only works if browser.pocket.enabled = true, so you need to undo this change if you have toggled the pref to false.

more options

cor-el said

Add code to the userChrome.css file below the default @namespace line.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#menu_pocket, #menu_pocketSeparator, #panelMenu_pocket, #BMB_pocket, #BMB_pocketSeparator { display:none !important; }
#context-savelinktopocket, #context-pocket { display:none!important; }

EDIT: added separator IDs


The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the currently used Firefox profile folder:

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

hi cor-el, i am mystified about this! Ie, why is Firefox using Chrome to help it carry out its added features? It seems to me that relying on Chrome makes it too complicated for those of us who want to try Pocket and such-- eg., i prefer myself to only use Firefox clear across the board, which is already messy enough using Windows XP and iMac desktop and my Android phone, and trying to get it all to sync properly! I would like to use Pocket, if there is indeed the possibility of syncing the links we save with it, including all the content inside the webpages of these links, just by using Firefox, and not having to install any other browser just to do this! (which i would have to do not only once but three times, not easy at all! And especially difficult, considering A. i usually don't have a reliable internet connection, and B. i don't relish the thought of having to learn the ins and outs of a new browser, and C. Chrome from what i've heard tends to put junkware all over your OSs... When i chose to try Pocket, i had the impression that Firefox was offering us this feature as a way to sync info we discovered from our webpage visits down to our computers and phones,to have offline access to the content. But i was mistaken? Thanks for clearing this up!

more options

chrome:// has nothing to do with the Google Chrome browse.

The chrome:/// URL references the XUL user interface used in Firefox and other Mozilla programs. https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Tutorial/The_Chrome_URL

I suspect that a former Mozilla programmer who left Mozilla to work on the new Google browser in 2006 was the one who came up with the idea to use that name for the Google browser.

Just spotted the thread that you started over here: https://support.mozilla.org/en-US/questions/1065807 - please continue there.

由the-edmeister于修改