chrome-tab-modifier icon indicating copy to clipboard operation
chrome-tab-modifier copied to clipboard

Does not work on Chrome 75.0.3770.100 Mac Mojave 10.14.5

Open bluefire0 opened this issue 5 years ago • 1 comments

In case of bug report, please fill this template and remove italic lines Otherwise, clear all and type :)

Browser: Chrome Version 75.0.3770.100 (Official Build) (64-bit) Mac OS 10.14.5 (Mojave)

Extension version: 0.22.0

Can be found here: chrome://extensions/?id=hcbgadmbdkiilgpifjgcakjehmafcjai

Expected behavior

What do you expect? That any function of the extension would work. Nothing works, not even the built-in 'Rename-Tab' feature in the extension menu -- that rule does get created, but it doesn't work. Have tried reloading tabs in rules and restarting Chrome; no change.

Actual behavior

What actually happen? No rule actions happen.

Steps to reproduce the behavior

Please describe the steps to help me to reproduce the actual behavior

  1. Create a rule, e.g: Name: calendar tab Detection: Contains URL fragment: calendar.google.com ---Actions--- Title: my calendar Pinned: on Protected: on ---end of Action options--- Click Save

  2. After the rule is saved, go to open Calendar tab and Refresh. 2a. If no tab already open, open the Calendar URL

expected: After step 2/a, I expect:

  1. the tab name to change to "my calendar"
  2. when i try to close the tab, I will get asked if i want to close it

actual:

  1. Tab name doesn't change
  2. Tab closes with no warning

bluefire0 avatar Jul 11 '19 21:07 bluefire0

Hey @bluefire0

I have the same setup and it works well:

Capture d’écran 2019-07-12 à 09 28 37

You can try by importing my rule:

{
    "settings": {
        "enable_new_version_notification": false
    },
    "rules": [
        {
            "name": "cal",
            "detection": "CONTAINS",
            "url_fragment": "calendar.google.com",
            "tab": {
                "icon": null,
                "muted": false,
                "pinned": false,
                "protected": false,
                "title": "my calendar",
                "title_matcher": null,
                "unique": false,
                "url_matcher": null
            }
        }
    ]
}

Can you just set the title and leave other actions as default?

Can you open the Chrome Console to check if any error is raised?

Best

sylouuu avatar Jul 12 '19 07:07 sylouuu